@@ -35,6 +35,27 @@ export default defineConfig({
35
35
slowMo : 500 , // time in milliseconds between each step, better to use it than explicitly define timeout in tests
36
36
} ,
37
37
} ,
38
+ webServer : [
39
+ // Comment from now as I don't how to get worker's healthcheck
40
+ // {
41
+ // command: 'npx nx worker twenty-server',
42
+ // url: 'http://127.0.0.1:3001',
43
+ // timeout: 120 * 1000,
44
+ // reuseExistingServer: !process.env.CI,
45
+ // },
46
+ {
47
+ command : 'npx nx start twenty-server' ,
48
+ url : 'http://localhost:3000/healthz' ,
49
+ timeout : 120 * 1000 ,
50
+ reuseExistingServer : ! process . env . CI ,
51
+ } ,
52
+ {
53
+ command : 'npx nx start twenty-front' ,
54
+ url : 'http://localhost:3001' ,
55
+ timeout : 120 * 10000 ,
56
+ reuseExistingServer : ! process . env . CI ,
57
+ }
58
+ ] ,
38
59
expect : {
39
60
timeout : 5000 ,
40
61
} ,
@@ -60,30 +81,5 @@ export default defineConfig({
60
81
dependencies : [ 'Login setup' ] ,
61
82
testMatch : / a u t h e n t i c a t i o n \/ .+ \. e 2 e - s p e c \. t s / , // forces to run login setup before running tests from this project - CASE SENSITIVE
62
83
} ,
63
-
64
- //{
65
- // name: 'webkit',
66
- // use: { ...devices['Desktop Safari'] },
67
- //},
68
-
69
- /* Test against mobile viewports. */
70
- // {
71
- // name: 'Mobile Chrome',
72
- // use: { ...devices['Pixel 5'] },
73
- // },
74
- // {
75
- // name: 'Mobile Safari',
76
- // use: { ...devices['iPhone 12'] },
77
- // },
78
-
79
- /* Test against branded browsers. */
80
- //{
81
- // name: 'Microsoft Edge',
82
- // use: { ...devices['Desktop Edge'], channel: 'msedge' },
83
- //},
84
- //{
85
- // name: 'Google Chrome',
86
- // use: { ...devices['Desktop Chrome'], channel: 'chrome' },
87
- //},
88
84
] ,
89
85
} ) ;
0 commit comments