Skip to content

Commit a62870f

Browse files
fix: remove skipped tests
1 parent 4b04d85 commit a62870f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ test.describe('Test Query Editor', async () => {
5252
await expect(explainJSON).toBeVisible({timeout: VISIBILITY_TIMEOUT});
5353
});
5454

55-
test.skip('Explain button executes Scan explanation', async ({page}) => {
55+
test('Explain button executes Scan explanation', async ({page}) => {
5656
const queryEditor = new QueryEditor(page);
5757
await queryEditor.explain(testQuery, QUERY_MODES.scan);
5858

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ test.describe('Test Query Execution Status', async () => {
4343
await expect(statusElement).toBe('Running');
4444
});
4545

46-
test.skip('Completed query status for completed query', async ({page}) => {
46+
test('Completed query status for completed query', async ({page}) => {
4747
const queryEditor = new QueryEditor(page);
4848

4949
await queryEditor.setQuery(testQuery);

0 commit comments

Comments
 (0)