forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverifyPnP.mjs
81 lines (73 loc) · 1.8 KB
/
verifyPnP.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import * as path from 'path';
import {fileURLToPath} from 'url';
import chalk from 'chalk';
import dedent from 'dedent';
import execa from 'execa';
import fs from 'graceful-fs';
import yaml from 'js-yaml';
import tempy from 'tempy';
const rootDirectory = path.resolve(
path.dirname(fileURLToPath(import.meta.url)),
'..',
);
const cwd = tempy.directory();
try {
const yarnRcPath = path.resolve(rootDirectory, '.yarnrc.yml');
const yarnConfig = yaml.load(fs.readFileSync(yarnRcPath, 'utf8'), {
filename: yarnRcPath,
});
fs.writeFileSync(
path.join(cwd, '.yarnrc.yml'),
dedent`
enableGlobalCache: true
yarnPath: ${path.resolve(rootDirectory, yarnConfig.yarnPath)}
`,
);
fs.writeFileSync(
path.join(cwd, 'package.json'),
JSON.stringify(
{
dependencies: {
jest: '*',
'jest-environment-jsdom': '*',
},
name: 'test-pnp',
},
null,
2,
),
);
fs.writeFileSync(
path.join(cwd, 'jsdom.test.js'),
dedent`
/*
* @jest-environment jsdom
*/
test('dummy', () => {
expect(window).toBeDefined();
});
`,
);
fs.writeFileSync(
path.join(cwd, 'node.test.js'),
dedent`
test('dummy', () => {
expect(typeof window).toBe('undefined');
});
`,
);
execa.sync('yarn', ['link', '--private', '--all', rootDirectory], {
cwd,
stdio: 'inherit',
});
execa.sync('yarn', ['jest'], {cwd, stdio: 'inherit'});
console.log(chalk.inverse.green(' Successfully ran Jest with PnP linker '));
} finally {
fs.rmSync(cwd, {force: true, recursive: true});
}