Skip to content

Commit

Permalink
ensure that copy tests tmpdir is outside of fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Jul 22, 2020
1 parent c1f4591 commit ed74afa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dev/build/lib/integration_tests/scan_copy.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ import { scanCopy } from '../scan_copy';

const IS_WINDOWS = process.platform === 'win32';
const FIXTURES = resolve(__dirname, '../__fixtures__');
const TMP = resolve(__dirname, '../__tmp__');
const WORLD_EXECUTABLE = resolve(FIXTURES, 'bin/world_executable');
const TMP = resolve(FIXTURES, '__tmp__');

const getCommonMode = (path: string) => statSync(path).mode.toString(8).slice(-3);

Expand Down

0 comments on commit ed74afa

Please sign in to comment.