File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
.DS_Store
2
2
/node_modules /
3
+
4
+ # https://github.com/netlify/cli/issues/6958
5
+ .netlify
Original file line number Diff line number Diff line change 1
1
/node_modules /
2
+ /tmp /
2
3
3
- # Tests
4
+ # playwright
4
5
/blob-report /
5
6
/playwright-report /
6
7
/playwright /.cache /
Original file line number Diff line number Diff line change 1
- import * as os from "node:os" ;
2
1
import { fileURLToPath } from "url" ;
3
2
4
3
import { test as playwrightTest } from "@playwright/test" ;
@@ -16,8 +15,7 @@ import { ChildProcess } from "child_process";
16
15
17
16
const __filename = fileURLToPath ( import . meta. url ) ;
18
17
const ROOT = Path . join ( __filename , "../.." ) ;
19
-
20
- const TMP = Path . join ( os . tmpdir ( ) , "react-router-templates.tests" ) ;
18
+ const TMP = Path . join ( ROOT , ".tests/tmp" ) ;
21
19
22
20
declare module "@playwright/test" {
23
21
interface Page {
You can’t perform that action at this time.
0 commit comments