Skip to content

Commit

Permalink
テストのディレクトリを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
takahash committed Dec 21, 2023
1 parent dcf29a1 commit 2ad75e5
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { defineConfig, devices } from "@playwright/test";
* See https://playwright.dev/docs/test-configuration.
*/
export default defineConfig({
testDir: "__test__/e2e",
testDir: "__tests__/e2e",
/* Run tests in files in parallel */
// fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
Expand Down
2 changes: 1 addition & 1 deletion vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ import { test } from "vitest";
import { defineConfig } from "vitest/config";

export default defineConfig({
test: { dir: "__test__/unit" },
test: { dir: "__tests__/unit" },
});

0 comments on commit 2ad75e5

Please sign in to comment.