Skip to content

Commit

Permalink
restore wildcard for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ivojawer committed Jan 7, 2024
1 parent ab0e411 commit 6eddde5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/test/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ async function runTests(): Promise<void> {
const testsRoot = __dirname

return new Promise((resolve, reject) => {
glob('*.test.js', { cwd: testsRoot }, (err, files) => {
glob('**.test.js', { cwd: testsRoot }, (err, files) => {
if (err) {
return reject(err)
}
Expand Down

0 comments on commit 6eddde5

Please sign in to comment.