Skip to content

Commit

Permalink
Try all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lydell committed Feb 15, 2025
1 parent 830ccef commit 86ffdf1
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions tests/flags.js
Original file line number Diff line number Diff line change
Expand Up @@ -705,15 +705,12 @@ describe('flags', () => {
assert.strictEqual(runResult.status, 0);
}).timeout(60000);

it.only(
'Should find all Elm files inside the directory that a glob resolves to',
() => {
// This is nice if two globs accidentally intersect.
const runResult = execElmTest(['tests/Pass*']);
console.log(runResult);
assert.strictEqual(runResult.status, 0);
}
).timeout(60000);
it('Should find all Elm files inside the directory that a glob resolves to', () => {
// This is nice if two globs accidentally intersect.
const runResult = execElmTest(['tests/Pass*']);
console.log(runResult);
assert.strictEqual(runResult.status, 0);
}).timeout(60000);
});

describe('unknown flags', () => {
Expand Down

0 comments on commit 86ffdf1

Please sign in to comment.