Skip to content

Commit 4aff9a8

Browse files
committed
fixup! chore: migrate to yarn modern
1 parent 96c074c commit 4aff9a8

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

scripts/ts-node/src/register.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,4 @@ tsNode.register({
88
// swc: true,
99
// remove this once `swc` will start working again
1010
transpileOnly: true,
11-
12-
// Explicit compiler options to avoid ts-node inferring NodeNext module from node: imports
13-
compilerOptions: {
14-
module: 'CommonJS',
15-
moduleResolution: 'Node',
16-
esModuleInterop: true,
17-
},
1811
});

tools/workspace-plugin/src/generators/move-packages/index.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ describe('move-packages generator', () => {
233233
setupDummyPackage(tree, { name: '@proj/react-old', version: '9.0.1' });
234234
});
235235

236-
it.skip(`should move all v8 packages in batch`, async () => {
236+
it(`should move all v8 packages in batch`, async () => {
237237
// eslint-disable-next-line @typescript-eslint/no-unused-vars
238238
const projects = [
239239
options.name,

tools/workspace-plugin/src/generators/split-library-in-two/generator.spec.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,7 @@ describe('split-library-in-two generator', () => {
3434
jest.spyOn(output, 'error').mockImplementation(noop);
3535
});
3636

37-
// Skip: In CI, splitLibraryInTwoGenerator calls formatFiles/prettier whose lazy-loaded parsers
38-
// trigger import() after Jest environment teardown, causing timeout
39-
// eslint-disable-next-line jest/no-disabled-tests
40-
it.skip('should split v9 project into 2', async () => {
37+
it('should split v9 project into 2', async () => {
4138
const oldConfig = readProjectConfiguration(tree, options.project);
4239

4340
await splitLibraryInTwoGenerator(tree, options);

0 commit comments

Comments
 (0)