You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AVA will select all.ts files as test files. It should automatically ignore .d.ts files. We'll have to make changes in AVA so this package can communicate exclusion patterns, not just file extensions.
For now, the workaround is to add !**/*.d.ts to the files patterns configuration.
The text was updated successfully, but these errors were encountered:
Have the watcher ignore changes to the original TypeScript source files.
This way, the watcher will only react to changes to the TypeScript build
output.
Allow the watcher to resolve the rewritten path of a test file, so it
can track it as a dependency of the original TypeScript source file.
This way, when the build output changes, the watcher knows to re-run the
original test file.
Update file patterns to ignore *.d.ts files, as well as any files in the
build output.
Updated the ignored-by-watcher patterns to ignore source map files from
the build output.
Fixes#10, #7, #9.
Have the watcher ignore changes to the original TypeScript source files.
This way, the watcher will only react to changes to the TypeScript build
output.
Allow the watcher to resolve the rewritten path of a test file, so it
can track it as a dependency of the original TypeScript source file.
This way, when the build output changes, the watcher knows to re-run the
original test file.
Update file patterns to ignore *.d.ts files, as well as any files in the
build output.
Updated the ignored-by-watcher patterns to ignore source map files from
the build output.
Fixes#10, #7, #9.
AVA will select all
.ts
files as test files. It should automatically ignore.d.ts
files. We'll have to make changes in AVA so this package can communicate exclusion patterns, not just file extensions.For now, the workaround is to add
!**/*.d.ts
to thefiles
patterns configuration.The text was updated successfully, but these errors were encountered: