Skip to content

Commit 79b3357

Browse files
authored
chore: fix invalid project configs and tweak .nxignore (#33059)
1 parent 48d7f84 commit 79b3357

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

.nxignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ packages/fluentui/.browserslistrc
1717
**/fixtures/**
1818
**/__fixtures__/**
1919
**/bundle-size/**
20+
**/fake_node_modules/**
2021

2122
; scaffolding templates
2223
**/generators/**/files/**

packages/react-date-time/jest.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
const { createV8Config: createConfig } = require('@fluentui/scripts-jest');
22

33
const config = createConfig({
4-
setupFiles: ['./config/tests.js'],
54
snapshotSerializers: ['@fluentui/jest-serializer-merge-styles'],
65
});
76

scripts/fluentui-publish/jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = {
1010
'^.+\\.tsx?$': ['@swc/jest', {}],
1111
},
1212
coverageDirectory: './coverage',
13-
testTimeout: 20000,
13+
testTimeout: 60000,
1414
testEnvironment: 'node',
1515
setupFiles: ['<rootDir>/jest-setup.js'],
1616
};

scripts/monorepo/jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = {
1010
'^.+\\.tsx?$': ['@swc/jest', {}],
1111
},
1212
coverageDirectory: './coverage',
13-
testTimeout: 20000,
13+
testTimeout: 60000,
1414
testEnvironment: 'node',
1515
setupFiles: ['<rootDir>/jest-setup.js'],
1616
};

tools/workspace-plugin/src/executors/build/executor.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,5 +263,5 @@ describe('Build Executor', () => {
263263
});
264264
"
265265
`);
266-
}, 30000);
266+
}, 60000);
267267
});

0 commit comments

Comments
 (0)