Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/policy-kit/tests/generator.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe('Profile Generator', () => {
expect(fs.existsSync(generatedPath)).toBe(true);
});

it('generated file is up to date with YAML sources', () => {
it('generated file is up to date with YAML sources', { timeout: 30000 }, () => {
// Run the generator in check mode
const result = execSync('pnpm generate:profiles:check', {
cwd: path.join(__dirname, '..'),
Expand Down Expand Up @@ -101,7 +101,7 @@ describe('Profile Generator', () => {
});

describe('deterministic output', () => {
it('generator produces identical output on repeated runs', () => {
it('generator produces identical output on repeated runs', { timeout: 30000 }, () => {
const cwd = path.join(__dirname, '..');

// Read current generated file
Expand Down
Loading