Skip to content

Commit

Permalink
fix: exclude .ts files from electron test (#950)
Browse files Browse the repository at this point in the history
Run tests using compiled code instead
  • Loading branch information
achingbrain committed Apr 7, 2022
1 parent 33399fa commit 1a28e68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/electron.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default async (argv, execaOptions) => {
const files = argv.files.length > 0
? [...argv.files]
: [
'test/**/*.spec.{js,ts,mjs,cjs}',
'test/**/*.spec.{js,mjs,cjs}',
'dist/test/**/*.spec.{js,cjs,mjs}'
]
const grep = argv.grep ? ['--grep', argv.grep] : []
Expand Down

0 comments on commit 1a28e68

Please sign in to comment.