Skip to content

Commit

Permalink
chore: fix invalid project configs and tweak .nxignore (#33059)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hotell authored Oct 17, 2024
1 parent 48d7f84 commit 79b3357
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions .nxignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ packages/fluentui/.browserslistrc
**/fixtures/**
**/__fixtures__/**
**/bundle-size/**
**/fake_node_modules/**

; scaffolding templates
**/generators/**/files/**
Expand Down
1 change: 0 additions & 1 deletion packages/react-date-time/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
const { createV8Config: createConfig } = require('@fluentui/scripts-jest');

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

Expand Down
2 changes: 1 addition & 1 deletion scripts/fluentui-publish/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
'^.+\\.tsx?$': ['@swc/jest', {}],
},
coverageDirectory: './coverage',
testTimeout: 20000,
testTimeout: 60000,
testEnvironment: 'node',
setupFiles: ['<rootDir>/jest-setup.js'],
};
2 changes: 1 addition & 1 deletion scripts/monorepo/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
'^.+\\.tsx?$': ['@swc/jest', {}],
},
coverageDirectory: './coverage',
testTimeout: 20000,
testTimeout: 60000,
testEnvironment: 'node',
setupFiles: ['<rootDir>/jest-setup.js'],
};
Original file line number Diff line number Diff line change
Expand Up @@ -263,5 +263,5 @@ describe('Build Executor', () => {
});
"
`);
}, 30000);
}, 60000);
});

0 comments on commit 79b3357

Please sign in to comment.