Skip to content

Commit

Permalink
Add glob test case
Browse files Browse the repository at this point in the history
  • Loading branch information
lydell committed Feb 15, 2025
1 parent 46ca4aa commit 36cdb47
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/flags.js
Original file line number Diff line number Diff line change
Expand Up @@ -704,6 +704,12 @@ describe('flags', () => {
]);
assert.strictEqual(runResult.status, 0);
}).timeout(60000);

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

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

0 comments on commit 36cdb47

Please sign in to comment.