Skip to content

Commit 9eb5b3c

Browse files
committed
feat(e2e): define front and server webservers
1 parent 51af668 commit 9eb5b3c

File tree

1 file changed

+21
-25
lines changed

1 file changed

+21
-25
lines changed

packages/twenty-e2e-testing/playwright.config.ts

+21-25
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,27 @@ export default defineConfig({
3535
slowMo: 500, // time in milliseconds between each step, better to use it than explicitly define timeout in tests
3636
},
3737
},
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+
],
3859
expect: {
3960
timeout: 5000,
4061
},
@@ -60,30 +81,5 @@ export default defineConfig({
6081
dependencies: ['Login setup'],
6182
testMatch: /authentication\/.+\.e2e-spec\.ts/, // forces to run login setup before running tests from this project - CASE SENSITIVE
6283
},
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-
//},
8884
],
8985
});

0 commit comments

Comments
 (0)