Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: skip broken test on windows #9966

Merged
merged 1 commit into from
May 4, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions e2e/__tests__/watchModeNoAccess.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,13 @@
import * as os from 'os';
import * as path from 'path';
import * as fs from 'graceful-fs';
import {skipSuiteOnWindows} from '@jest/test-utils';
import {cleanup, writeFiles} from '../Utils';
import {runContinuous} from '../runJest';

// Until https://github.com/nodejs/node/issues/33227 is solved somehow
skipSuiteOnWindows();

const DIR = path.resolve(os.tmpdir(), 'watch_mode_no_access');

const sleep = (time: number) =>
Expand Down