Skip to content

Commit

Permalink
Revert "chore: skip edge test"
Browse files Browse the repository at this point in the history
This reverts commit 783a964.
  • Loading branch information
Kelly Selden committed Aug 25, 2023
1 parent 50e9157 commit 50cd923
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
3 changes: 1 addition & 2 deletions packages/mocha/test/acceptance/index-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,7 @@ describe(function() {
this.assertFilesExist('it firefox failure');
});

// eslint-disable-next-line mocha/no-skipped-tests
it.skip('works in edge', async function() {
it('works in edge', async function() {
let stats = await this.runTests({
filter: 'it edge ',
});
Expand Down
9 changes: 3 additions & 6 deletions packages/remote/test/integration/index-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,7 @@ describe(function() {
await test(this.test.title);
});

// eslint-disable-next-line mocha/no-skipped-tests
it.skip('edge', async function() {
it('edge', async function() {
await test(this.test.title);
});
});
Expand All @@ -112,8 +111,7 @@ describe(function() {
await test(this.test.title);
});

// eslint-disable-next-line mocha/no-skipped-tests
it.skip('edge', async function() {
it('edge', async function() {
await test(this.test.title);
});
});
Expand Down Expand Up @@ -167,8 +165,7 @@ describe(function() {
await test(this.test.title);
});

// eslint-disable-next-line mocha/no-skipped-tests
it.skip('edge', async function() {
it('edge', async function() {
await test(this.test.title);
});
});
Expand Down

0 comments on commit 50cd923

Please sign in to comment.