Skip to content

Commit

Permalink
e2e test: enable test explorer test for web (#5988)
Browse files Browse the repository at this point in the history
Enable the R test explorer test for web

### QA Notes

All tests should pass.

@:test-explorer @:web
  • Loading branch information
testlabauto authored Jan 14, 2025
1 parent 8bb361a commit 4627f2a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/e2e/tests/test-explorer/test-explorer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ test.use({
suiteId: __filename
});

test.describe('Test Explorer', { tag: [tags.TEST_EXPLORER] }, () => {
test.describe('Test Explorer', { tag: [tags.TEST_EXPLORER, tags.WEB] }, () => {
test.beforeAll(async function ({ app, r, userSettings }) {
try {
// don't use native file picker
Expand Down Expand Up @@ -44,6 +44,8 @@ test.describe('Test Explorer', { tag: [tags.TEST_EXPLORER] }, () => {

await app.workbench.testExplorer.runAllTests();

await app.workbench.quickaccess.runCommand('workbench.action.closeAllEditors');

await expect(async () => {
const testResults = await app.workbench.testExplorer.getTestResults();

Expand Down

0 comments on commit 4627f2a

Please sign in to comment.