We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f4d723 commit 7b7d78bCopy full SHA for 7b7d78b
__tests__/e2e.test.ts
@@ -1,17 +1,8 @@
1
-import { tmpdir } from 'node:os';
2
import { beforeAll, expect, test } from '@jest/globals';
3
import { execa } from 'execa';
4
import pMap from 'p-map';
5
6
-const fixturesTempDir = process.env.GITHUB_ACTIONS
7
- ? // Switch to `tmpdir()` on GitHub Actions to avoid
8
- // ESLint crashing with Windows paths over the 260 character
9
- // MAX_PATH limit
10
- // https://github.com/upleveled/preflight/pull/469/#issuecomment-1812422819
11
- // https://github.com/eslint/eslint/issues/17763
12
- // https://github.com/nodejs/node/issues/50753
13
- tmpdir()
14
- : '__tests__/fixtures/__temp';
+const fixturesTempDir = '__tests__/fixtures/__temp';
15
16
beforeAll(
17
async () => {
0 commit comments