Skip to content

Commit

Permalink
test(middleware-code-coverage): migrate config ignoredByWatcher to wa…
Browse files Browse the repository at this point in the history
…tchMode.ignoreChanges
  • Loading branch information
flovogt committed Mar 4, 2024
1 parent 546b0af commit eda8954
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 5 additions & 3 deletions packages/middleware-code-coverage/ava-integration.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
export default {
files: ["test/integration/boot.js"],
ignoredByWatcher: [
"tmp/**"
]
watchMode: {
ignoreChanges: [
"tmp/**"
]
}
};
8 changes: 5 additions & 3 deletions packages/middleware-code-coverage/ava.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
export default {
files: ["test/unit/**/*.js"],
ignoredByWatcher: [
"tmp/**"
],
watchMode: {
ignoreChanges: [
"tmp/**"
]
},
nodeArguments: [
"--loader=esmock",
"--no-warnings"
Expand Down

0 comments on commit eda8954

Please sign in to comment.