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
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.
If you're not selecting tests from a specific source directory, you should add an exclusion pattern like
!build/**
to AVA'sfiles
configuration.We should document this.
The text was updated successfully, but these errors were encountered: