Skip to content

Commit 3e658be

Browse files
committed
fix: investigate test
1 parent 99d00ef commit 3e658be

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

playwright.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const config: PlaywrightTestConfig = {
2222
REACT_APP_DISABLE_CHECKS: 'true',
2323
},
2424
port: 3000,
25-
reuseExistingServer: true,
25+
reuseExistingServer: !process.env.CI,
2626
},
2727
use: {
2828
baseURL: baseUrl || 'http://localhost:3000/',

tests/suites/tenant/queryEditor/queryEditor.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ test.describe('Test Query Editor', async () => {
143143
await expect(queryEditor.waitForStatus('Stopped')).resolves.toBe(true);
144144
});
145145

146-
test('Streaming query shows some results and banner when stop button is clicked', async ({
146+
test.only('Streaming query shows some results and banner when stop button is clicked', async ({
147147
page,
148148
}) => {
149149
const queryEditor = new QueryEditor(page);

0 commit comments

Comments
 (0)