Skip to content

Commit

Permalink
test(smole): smoke test for #266
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmlnc committed Jun 16, 2020
1 parent 6f34ac9 commit 7ecf97f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/tests/smoke/regular.smoke.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import * as os from 'os';

import * as smoke from './smoke';

smoke.suite('Smoke → Regular', [
Expand Down Expand Up @@ -483,3 +485,8 @@ smoke.suite('Smoke → Regular (relative)', [
{ pattern: '../{first,second}', cwd: 'fixtures/first' },
{ pattern: './../*', cwd: 'fixtures/first' }
]);

smoke.suite('Smoke → Regular (root)', [
// ISSUE-266
{ pattern: '/tmp/*', condition: () => os.platform() !== 'win32' }
]);

0 comments on commit 7ecf97f

Please sign in to comment.