diff --git a/.borp.int-esm.yaml b/.borp.int-esm.yaml index 13008f0d60..fb941410d8 100644 --- a/.borp.int-esm.yaml +++ b/.borp.int-esm.yaml @@ -1,3 +1,5 @@ files: - - 'test/integration/**/*.tap.mjs' - - 'test/integration/*.test.mjs' + - 'test/integration/**/*.test.mjs' + # We need to ignore any `*.test.js` files within nested `node_modules` + # directories. We only want to target the tests we have written ourselves. + - '!test/integration/**/node_modules/**/*' diff --git a/.borp.int.yaml b/.borp.int.yaml index 509e045a33..714d6cbc0a 100644 --- a/.borp.int.yaml +++ b/.borp.int.yaml @@ -1,5 +1,4 @@ files: - - 'test/integration/**/*.tap.js' - 'test/integration/**/*.test.js' # We need to ignore any `*.test.js` files within nested `node_modules` # directories. We only want to target the tests we have written ourselves.