Skip to content

Commit

Permalink
tell jest to ignore playwright files
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenkilbourn committed Aug 29, 2024
1 parent afe502e commit 474645e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,11 +201,13 @@ module.exports = {
// unmockedModulePathPatterns: undefined,

// Indicates whether each individual test should be reported during the run
verbose: true
verbose: true,

// An array of regexp patterns that are matched against all source file paths before re-running tests in watch mode
// watchPathIgnorePatterns: [],

// Whether to use watchman for file crawling
// watchman: true,

modulePathIgnorePatterns: ['/test/playwright/']
};

0 comments on commit 474645e

Please sign in to comment.