Skip to content

Commit 165318e

Browse files
authored
Merge pull request #719 from kellyselden/enable_edge_tests
Revert "chore: skip edge test"
2 parents edc564e + 44bcf0b commit 165318e

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

packages/mocha/test/acceptance/index-test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,7 @@ describe(function() {
331331
this.assertFilesExist('it firefox failure');
332332
});
333333

334-
// eslint-disable-next-line mocha/no-skipped-tests
335-
it.skip('works in edge', async function() {
334+
it('works in edge', async function() {
336335
let stats = await this.runTests({
337336
filter: 'it edge ',
338337
});

packages/remote/test/integration/index-test.js

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,7 @@ describe(function() {
8484
await test(this.test.title);
8585
});
8686

87-
// eslint-disable-next-line mocha/no-skipped-tests
88-
it.skip('edge', async function() {
87+
it('edge', async function() {
8988
await test(this.test.title);
9089
});
9190
});
@@ -112,8 +111,7 @@ describe(function() {
112111
await test(this.test.title);
113112
});
114113

115-
// eslint-disable-next-line mocha/no-skipped-tests
116-
it.skip('edge', async function() {
114+
it('edge', async function() {
117115
await test(this.test.title);
118116
});
119117
});
@@ -167,8 +165,7 @@ describe(function() {
167165
await test(this.test.title);
168166
});
169167

170-
// eslint-disable-next-line mocha/no-skipped-tests
171-
it.skip('edge', async function() {
168+
it('edge', async function() {
172169
await test(this.test.title);
173170
});
174171
});

0 commit comments

Comments
 (0)