Skip to content

Commit

Permalink
fix(playwright): fix include in tsconfig.json (nrwl#21730)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiongemi authored Feb 9, 2024
1 parent 2fe4396 commit 27faa7d
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,12 @@ export async function configurationGeneratorInternal(
include: [
'**/*.ts',
'**/*.js',
`${offsetFromProjectRoot}playwright.config.ts`,
`${offsetFromProjectRoot}**/*.spec.ts`,
`${offsetFromProjectRoot}**/*.spec.js`,
`${offsetFromProjectRoot}**/*.d.ts`,
'playwright.config.ts',
'src/**/*.spec.ts',
'src/**/*.spec.js',
'src/**/*.test.ts',
'src/**/*.test.js',
'src/**/*.d.ts',
],
},
null,
Expand Down

0 comments on commit 27faa7d

Please sign in to comment.