Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: avajs/ava
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.3.1
Choose a base ref
...
head repository: avajs/ava
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.0.0
Choose a head ref

Commits on Jun 19, 2023

  1. Copy the full SHA
    583b513 View commit details

Commits on Jun 21, 2023

  1. Drop support for Node.js 14, update minimal requirements for 16, 18 a…

    …nd 20
    
    Require the latest versions with new features.
    novemberborn committed Jun 21, 2023
    Copy the full SHA
    8f1d308 View commit details

Commits on Jun 25, 2023

  1. Use ES2022 APIs

    * Use Object.hasOwn() instead of Reflect.has()
    * Use Object.hasOwn() over Object.prototype.hasOwnProperty()
    * Use String#replaceAll()
    novemberborn committed Jun 25, 2023
    Copy the full SHA
    fae3f87 View commit details
  2. Remove superfluous dependencies

    * Remove get-stream dependency
    * Remove delay dependency
    * Remove fs-extra
    * Remove temp-write
    novemberborn committed Jun 25, 2023
    Copy the full SHA
    6f62c2d View commit details
  3. Copy the full SHA
    1fff08d View commit details
  4. Enhance require feature

    * Allow loading of ES modules
    * Automatically invoke the default export (if any) and await the result
    * Pass arguments from the config to the default export (relies on "advanced" IPC for child processes)
    * Document that local files are loaded through the providers (e.g. `@ava/typescript`)
    
    Co-authored-by: Mark Wubben <mark@novemberborn.net>
    sculpt0r and novemberborn authored Jun 25, 2023
    Copy the full SHA
    4dc385b View commit details

Commits on Jul 2, 2023

  1. Minor changes to watch mode

    * Remove undocumented ability to start watch mode via the config. Require the CLI flag instead
    * Watch mode is no longer 'relatively new'
    * Add ava.config.mjs to default watcher ignore patterns
    * Ignore changes to failed-tests file in watcher
    
    Logger cleanup:
    
    * Remove obsolete clearLogOnNextRun option
    * Track firstRun for reporter
    novemberborn committed Jul 2, 2023
    Copy the full SHA
    94bb361 View commit details
  2. Require opt-in to AVA 5's watcher and separate install of chokidar

    Restrict @ava/typescript to the ava-3.2 protocol, since the legacy code is not compatible with the ava-6 protocol.
    
    Remove brittle tests for the legacy code.
    novemberborn committed Jul 2, 2023
    Copy the full SHA
    13f7451 View commit details
  3. Add a brand new watcher

    Rely on recursive fs.watch(), rather than Chokidar. On Linux this is supported from Node.js 20 onwards. It won't work for network shares and Docker volume mounts which would require polling, we'll find out if that's a problem or not. (For now, the previous implementation is still available.)
    
    Use @vercel/nft to perform static dependency analysis, supporting ESM and CJS imports for JavaScript & TypeScript source files. This is a huge improvement over the previous runtime tracking of CJS imports, which did not support ESM.
    
    Rewrite the change handling logic to be easier to follow (though it's still pretty complicated).
    
    Improve integration with `@ava/typescript`. The watcher can now detect a change to a TypeScript source file, then wait for the corresponding build output to change before re-running tests.
    novemberborn committed Jul 2, 2023
    Copy the full SHA
    4f52a9f View commit details
  4. Copy the full SHA
    c0b0d7b View commit details
  5. Set up CI to test the new watcher

    * Run tests on macOS
    * Use Bash shell
    * Run watch mode test separately and serially
    novemberborn committed Jul 2, 2023
    Copy the full SHA
    6cc417b View commit details
  6. Modernize some syntax

    novemberborn committed Jul 2, 2023
    Copy the full SHA
    e5f19d9 View commit details
  7. 1
    Copy the full SHA
    1c66194 View commit details
  8. Expect TypeScript 5.1 (or newer)

    XO isn't ready for this but it works, just some warnings locally during npm install.
    novemberborn committed Jul 2, 2023
    1
    Copy the full SHA
    e24cdb6 View commit details
  9. Update dependencies

    novemberborn committed Jul 2, 2023
    1
    Copy the full SHA
    abd43d1 View commit details
  10. Tweak c8 config

    novemberborn committed Jul 2, 2023
    1
    Copy the full SHA
    3ec0617 View commit details
  11. 1
    Copy the full SHA
    a6951cc View commit details
  12. Test AVA using AVA 5

    novemberborn committed Jul 2, 2023
    1
    Copy the full SHA
    018d64f View commit details
  13. Pro-actively write out code coverage

    This helped recording coverage when testing AVA itself, but hopefully it also helps user projects.
    novemberborn committed Jul 2, 2023
    1
    Copy the full SHA
    6ca0f1c View commit details

Commits on Jul 3, 2023

  1. Make test-types work with tsc and XO

    This used to work… but didn't for the new timout tests.
    novemberborn committed Jul 3, 2023
    1
    Copy the full SHA
    5a9a627 View commit details
  2. 1
    Copy the full SHA
    10e2e8a View commit details
  3. Remove workaround for worker.terminate() crashes

    Looks like the patch is included in all supported Node.js versions.
    novemberborn committed Jul 3, 2023
    Copy the full SHA
    7533020 View commit details
  4. 1
    Copy the full SHA
    f047694 View commit details

Commits on Jul 31, 2023

  1. 1
    Copy the full SHA
    f2726f1 View commit details
  2. Only treat native errors as errors

    * Track worker errors. They're not native due to nodejs/node#48716, but we want to treat them as such anyway.
    * Only treat native errors as errors
    * Remove is-error dependency
    * Document edge case where `error instanceof Error` can be true, yet AVA does not recognize `error` as an error
    
    See also #2911 for an earlier attempt.
    novemberborn authored Jul 31, 2023
    1
    Copy the full SHA
    e58f466 View commit details

Commits on Aug 16, 2023

  1. Make assert, truthy and falsy typeguards

    Co-authored-by: Sindre Sorhus <sindresorhus@gmail.com>
    ZachHaber and sindresorhus authored Aug 16, 2023
    Copy the full SHA
    e27183a View commit details

Commits on Sep 10, 2023

  1. Refactor error processing

    This commit simplifies error serialization, relying on the advanced IPC for child processes & worker threads. Unnecessary code has been removed.
    
    Possibly breaking changes:
    
    * Renamed and removed fields from the undocumented AssertionError class, including the raw values
    * Changes to the undocumented TAP output; stack traces are a bit worse, the rest is about the same but some fields have different names or values
    * `nyc` stack frames are no longer ignored; we assume you're using the native code coverage tools
    novemberborn committed Sep 10, 2023
    Copy the full SHA
    4c5b469 View commit details

Commits on Sep 11, 2023

  1. Allow throws / throwsAsync to work with any value, not just errors

    Fixes #2517.
    
    Co-authored-by: Mark Wubben <mark@novemberborn.net>
    adiSuper94 and novemberborn authored Sep 11, 2023
    Copy the full SHA
    e81f413 View commit details

Commits on Sep 24, 2023

  1. Copy the full SHA
    0d7bbd5 View commit details

Commits on Oct 22, 2023

  1. Copy the full SHA
    c792f10 View commit details
  2. Make assertions throw

    Fixes #3201.
    
    Assertions now throw a `TestFailure` error when they fail. This error is not exported or documented and should not be used or thrown manually. You cannot catch this error in order to recover from a failure, use `t.try()` instead.
    
    All assertions except for `throws` and `throwsAsync` now return `true` when they pass. This is useful for some of the assertions in TypeScript where they can be used as a type guard.
    
    Committing a failed `t.try()` result now also throws.
    novemberborn committed Oct 22, 2023
    Copy the full SHA
    b6fbd58 View commit details

Commits on Oct 23, 2023

  1. Drop Node.js 16, upgrade minimal 18 and 20, test 21

    * Drop support for Node.js 16
    * Change expected Node.js 18 to 18.18
    * Change expected Node.js 20 to 20.8
    * Add Node.js 21 to the test matrix
    
    * Change snapshot tests to compare decompressed bitstreams
    
    The snapshots are compressed differently in Node.js 21. The compression has been stable for many versions but that is not a guarantee, see nodejs/node#50138 for background.
    
    Change tests to compare the decompressed data instead.
    novemberborn authored Oct 23, 2023
    Copy the full SHA
    03a6723 View commit details

Commits on Nov 6, 2023

  1. Update dependencies, rely on Node.js 18, other small changes

    * Update dependencies
    * Rely on Node.js 18 language features
    * Other small changes
    * Upgrade to tap@18
    * Develop and test with typescript@5.2
    * Rebuild lockfile
    
    ---------
    
    Co-authored-by: Mark Wubben <mark@novemberborn.net>
    sindresorhus and novemberborn authored Nov 6, 2023
    Copy the full SHA
    cf0fa4c View commit details

Commits on Nov 7, 2023

  1. Remove ability to select AVA 5 watcher

    When I first retained the AVA 5 logic, it was under the assumption AVA 6 would be released in the summer with another breaking release later in the year. It's now autumn, Node.js 16 is end of life, and for now it's just not worth having this logic around.
    
    Depending on how well the watcher works I'm not opposed to having it as an experimental "select your watch mode" feature though.
    novemberborn authored Nov 7, 2023
    Copy the full SHA
    e07179b View commit details

Commits on Nov 26, 2023

  1. Copy the full SHA
    6790d50 View commit details
  2. Experimentally expose internal events for custom reporters

    Add a new `observeRunsFromConfig` experiment, which allows a test run to be observed by a function installed through an `ava.config.*` file.
    
    The function has access to AVA's internal events, which can then be used to report to a file.
    
    AVA's internal event structure is not currently covered by any SemVer guarantees, which is why this feature requires the experimental opt-in.
    
    Does not currently support watch mode. Only the first run is observed.
    codetheweb authored Nov 26, 2023
    Copy the full SHA
    adbfcde View commit details

Commits on Dec 3, 2023

  1. Fix external assertions tests for Node.js 21

    The assertion message is different, which requires more creativity with the snapshots.
    novemberborn committed Dec 3, 2023
    Copy the full SHA
    0492d32 View commit details

Commits on Dec 4, 2023

  1. Tweak README

    * Clarify why we've posted the Ukraine war CTA and remove the third-party banner
    
    * Remove Twitter link
    
    It's not the best place to get updates.
    
    * Thread isolation, not process (at least by default)
    
    * Fix link
    
    * Remove outdated comparison with mocha/tape/tap
    novemberborn authored Dec 4, 2023
    Copy the full SHA
    cac1d1f View commit details
  2. Update dependencies & other minor tweaks

    * Update dependencies
    
    * Ignore snapshot fixture due to churn
    
    * Remove errant log
    
    * Update GHA actions
    
    * Test type definition with TS 5.3
    
    * Select latest LTS in Volta
    
    * Remove unnecessary npx invocation
    
    * Rebuild lockfile
    
    * Work around legacy tap-based tests choking on our tsconfig.json
    
    No idea why it's even resolving the config when there are no TypeScript tests to run.
    novemberborn authored Dec 4, 2023
    Copy the full SHA
    88e4333 View commit details
  3. Don't force-exit after tests have completed

    Fixes #1718.
    
    With worker threads, this seems to stop AVA from detecting that the thread has exited, causing a hang.
    
    Also remove flush logic implemented in #1722. Let's hope that current Node.js versions are better at flushing IPC before exiting.
    novemberborn authored Dec 4, 2023
    Copy the full SHA
    af5684d View commit details
  4. 6.0.0

    novemberborn committed Dec 4, 2023
    Copy the full SHA
    cf7a288 View commit details
Showing with 12,770 additions and 13,514 deletions.
  1. +4 −1 .c8rc.json
  2. +17 −18 .github/workflows/ci.yml
  3. +1 −0 .gitignore
  4. +7 −9 .taprc
  5. +4 −0 .xo-config.cjs
  6. +5 −1 ava.config.js
  7. +2 −0 docs/02-execution-context.md
  8. +25 −25 docs/03-assertions.md
  9. +81 −8 docs/06-configuration.md
  10. +28 −1 docs/08-common-pitfalls.md
  11. +1 −1 docs/recipes/endpoint-testing.md
  12. +41 −10 docs/recipes/typescript.md
  13. +19 −7 docs/recipes/watch-mode.md
  14. +2 −2 docs/recipes/when-to-use-plan.md
  15. +7 −0 entrypoints/internal.d.mts
  16. 0 entrypoints/{main.d.ts → main.d.mts}
  17. 0 entrypoints/{plugin.d.ts → plugin.d.mts}
  18. +1 −1 examples/macros/test.js
  19. +12 −0 lib/api-event-iterator.js
  20. +14 −23 lib/api.js
  21. +289 −444 lib/assert.js
  22. +95 −61 lib/cli.js
  23. +2 −2 lib/code-excerpt.js
  24. +3 −3 lib/eslint-plugin-helper-worker.js
  25. +3 −13 lib/fork.js
  26. +1 −9 lib/glob-helpers.cjs
  27. +7 −3 lib/globs.js
  28. +1 −1 lib/line-numbers.js
  29. +3 −3 lib/load-config.js
  30. +3 −3 lib/parse-test-args.js
  31. +4 −4 lib/plugin-support/shared-workers.js
  32. +11 −13 lib/provider-manager.js
  33. +0 −1 lib/reporters/beautify-stack.js
  34. +92 −45 lib/reporters/default.js
  35. +6 −6 lib/reporters/format-serialized-error.js
  36. +5 −5 lib/reporters/improper-usage-messages.js
  37. +30 −30 lib/reporters/tap.js
  38. +9 −0 lib/run-status.js
  39. +7 −7 lib/runner.js
  40. +14 −1 lib/scheduler.js
  41. +44 −116 lib/serialize-error.js
  42. +1 −1 lib/slash.cjs
  43. +14 −8 lib/snapshot-manager.js
  44. +90 −81 lib/test.js
  45. +494 −365 lib/watcher.js
  46. +90 −51 lib/worker/base.js
  47. +9 −53 lib/worker/channel.cjs
  48. +0 −48 lib/worker/dependency-tracker.js
  49. +1 −1 license
  50. +8,640 −7,989 package-lock.json
  51. +36 −42 package.json
  52. +6 −12 readme.md
  53. +9 −0 scripts/ci.sh
  54. +8 −0 scripts/test.sh
  55. +3 −56 test-tap/api.js
  56. +365 −339 test-tap/assert.js
  57. +19 −28 test-tap/code-excerpt.js
  58. +5 −6 test-tap/fixture/fail-fast/multiple-files/passes-slow.cjs
  59. +1 −1 test-tap/fixture/fail-fast/timeout/fails.cjs
  60. +1 −1 test-tap/fixture/fail-fast/timeout/passes-slow.cjs
  61. +0 −2 test-tap/fixture/install-global.cjs
  62. +1 −1 test-tap/fixture/long-running.cjs
  63. 0 test-tap/fixture/{pkg-conf → package-config}/fail-without-assertions/package.json
  64. 0 test-tap/fixture/{pkg-conf → package-config}/fail-without-assertions/test.cjs
  65. +4 −4 test-tap/fixture/process-cwd-default.cjs
  66. +7 −5 test-tap/fixture/report/regular/traces-in-t-throws.cjs
  67. +1 −1 test-tap/fixture/report/timeoutcontextlogs/a.cjs
  68. +1 −1 test-tap/fixture/report/timeoutcontextlogs/b.cjs
  69. +1 −1 test-tap/fixture/report/timeoutinmultiplefiles/a.cjs
  70. +1 −1 test-tap/fixture/report/timeoutinmultiplefiles/b.cjs
  71. +1 −1 test-tap/fixture/report/timeoutinsinglefile/a.cjs
  72. +1 −1 test-tap/fixture/report/timeoutwithmatch/a.cjs
  73. +1 −1 test-tap/fixture/serial.cjs
  74. 0 test-tap/fixture/{watcher → tap}/package.json
  75. 0 test-tap/fixture/{watcher → tap}/test.cjs
  76. +0 −3 test-tap/fixture/validate-installed-global.cjs
  77. 0 test-tap/fixture/watcher/ignored-files/ignore.cjs
  78. 0 test-tap/fixture/watcher/ignored-files/ignored.cjs
  79. +0 −10 test-tap/fixture/watcher/ignored-files/package.json
  80. 0 test-tap/fixture/watcher/ignored-files/source.cjs
  81. +0 −3 test-tap/fixture/watcher/ignored-files/test.cjs
  82. +0 −5 test-tap/fixture/watcher/tap-in-conf/package.json
  83. +0 −5 test-tap/fixture/watcher/tap-in-conf/test.cjs
  84. +0 −2 test-tap/fixture/watcher/with-dependencies/source.cjs
  85. +0 −7 test-tap/fixture/watcher/with-dependencies/test-1.cjs
  86. +0 −5 test-tap/fixture/watcher/with-dependencies/test-2.cjs
  87. +0 −95 test-tap/globs.js
  88. +2 −2 test-tap/helper/ava-test.js
  89. +5 −7 test-tap/helper/cli.js
  90. +1 −2 test-tap/helper/replay-report.js
  91. +11 −10 test-tap/helper/report.js
  92. +1 −1 test-tap/helper/tty-stream.js
  93. +2 −2 test-tap/integration/assorted.js
  94. +3 −3 test-tap/integration/debug.js
  95. +4 −2 test-tap/integration/snapshots.js
  96. +0 −226 test-tap/integration/watcher.js
  97. +8 −8 test-tap/promise.js
  98. +0 −55 test-tap/reporters/default.edgecases.v14.log
  99. +1 −1 test-tap/reporters/default.edgecases.v18.log
  100. +1 −1 test-tap/reporters/default.edgecases.v20.log
  101. +1 −1 test-tap/reporters/{default.edgecases.v16.log → default.edgecases.v21.log}
  102. +0 −24 test-tap/reporters/default.failfast.v16.log
  103. 0 test-tap/reporters/{default.failfast.v14.log → default.failfast.v21.log}
  104. +0 −24 test-tap/reporters/default.failfast2.v16.log
  105. 0 test-tap/reporters/{default.failfast2.v14.log → default.failfast2.v21.log}
  106. +1 −1 test-tap/reporters/default.js
  107. +0 −10 test-tap/reporters/default.only.v16.log
  108. 0 test-tap/reporters/{default.only.v14.log → default.only.v21.log}
  109. +0 −357 test-tap/reporters/default.regular.v16.log
  110. +18 −16 test-tap/reporters/default.regular.v18.log
  111. +18 −16 test-tap/reporters/default.regular.v20.log
  112. +18 −16 test-tap/reporters/{default.regular.v14.log → default.regular.v21.log}
  113. +0 −38 test-tap/reporters/default.timeoutcontextlogs.v16.log
  114. 0 test-tap/reporters/{default.timeoutcontextlogs.v14.log → default.timeoutcontextlogs.v21.log}
  115. +0 −34 test-tap/reporters/default.timeoutinmultiplefiles.v16.log
  116. 0 test-tap/reporters/{default.timeoutinmultiplefiles.v14.log → default.timeoutinmultiplefiles.v21.log}
  117. +0 −20 test-tap/reporters/default.timeoutinsinglefile.v16.log
  118. 0 test-tap/reporters/{default.timeoutinsinglefile.v14.log → default.timeoutinsinglefile.v21.log}
  119. +0 −18 test-tap/reporters/default.timeoutwithmatch.v16.log
  120. 0 test-tap/reporters/{default.timeoutwithmatch.v14.log → default.timeoutwithmatch.v21.log}
  121. +0 −32 test-tap/reporters/default.watch.v16.log
  122. 0 test-tap/reporters/{default.watch.v14.log → default.watch.v21.log}
  123. +1 −1 test-tap/reporters/improper-usage-messages.js
  124. +0 −42 test-tap/reporters/tap.edgecases.v14.log
  125. +3 −7 test-tap/reporters/tap.edgecases.v18.log
  126. +3 −7 test-tap/reporters/tap.edgecases.v20.log
  127. +3 −7 test-tap/reporters/{tap.edgecases.v16.log → tap.edgecases.v21.log}
  128. +0 −17 test-tap/reporters/tap.failfast.v16.log
  129. +2 −2 test-tap/reporters/tap.failfast.v18.log
  130. +2 −2 test-tap/reporters/tap.failfast.v20.log
  131. +2 −2 test-tap/reporters/{tap.failfast.v14.log → tap.failfast.v21.log}
  132. +0 −19 test-tap/reporters/tap.failfast2.v16.log
  133. +2 −2 test-tap/reporters/tap.failfast2.v18.log
  134. +2 −2 test-tap/reporters/tap.failfast2.v20.log
  135. +2 −2 test-tap/reporters/{tap.failfast2.v14.log → tap.failfast2.v21.log}
  136. +2 −1 test-tap/reporters/tap.js
  137. +0 −13 test-tap/reporters/tap.only.v16.log
  138. 0 test-tap/reporters/{tap.only.v14.log → tap.only.v21.log}
  139. +0 −268 test-tap/reporters/tap.regular.v14.log
  140. +50 −60 test-tap/reporters/tap.regular.v18.log
  141. +50 −60 test-tap/reporters/tap.regular.v20.log
  142. +50 −60 test-tap/reporters/{tap.regular.v16.log → tap.regular.v21.log}
  143. +2 −1 test-tap/runner.js
  144. +0 −83 test-tap/serialize-error.js
  145. +2 −1 test-tap/test-try-commit.js
  146. +35 −43 test-tap/test.js
  147. +2 −0 test-tap/tsconfig.json
  148. +0 −1,507 test-tap/watcher.js
  149. +23 −1 test-types/import-in-cts/assertions-as-type-guards.cts
  150. +1 −1 test-types/import-in-cts/context.cts
  151. +1 −1 test-types/import-in-cts/deep-equal.cts
  152. +1 −1 test-types/import-in-cts/implementation-result.cts
  153. +1 −1 test-types/import-in-cts/like.cts
  154. +1 −1 test-types/import-in-cts/macros.cts
  155. +1 −1 test-types/import-in-cts/snapshot.cts
  156. +1 −1 test-types/import-in-cts/teardown.cts
  157. +24 −16 test-types/import-in-cts/throws.cts
  158. +6 −0 test-types/import-in-cts/timeout.cts
  159. +1 −1 test-types/import-in-cts/try-commit.cts
  160. +24 −1 test-types/module/assertions-as-type-guards.ts
  161. +3 −2 test-types/module/context.ts
  162. +2 −1 test-types/module/deep-equal.ts
  163. +1 −1 test-types/module/implementation-result.ts
  164. +1 −1 test-types/module/like.ts
  165. +4 −3 test-types/module/macros.ts
  166. +3 −2 test-types/module/snapshot.ts
  167. +1 −1 test-types/module/teardown.ts
  168. +33 −16 test-types/module/throws.ts
  169. +6 −0 test-types/module/timeout.ts
  170. +5 −4 test-types/module/try-commit.ts
  171. +13 −0 test/assertions/fixtures/throws-async.js
  172. +13 −0 test/assertions/fixtures/throws.js
  173. +28 −0 test/assertions/snapshots/test.js.md
  174. BIN test/assertions/snapshots/test.js.snap
  175. +12 −0 test/assertions/test.js
  176. +2 −2 test/builtin-nodejs-assert/test.js
  177. +4 −4 test/concurrency/snapshots/test.js.md
  178. BIN test/concurrency/snapshots/test.js.snap
  179. +6 −0 test/config-require/fixtures/exports-default/package.json
  180. +5 −0 test/config-require/fixtures/exports-default/required.cjs
  181. +7 −0 test/config-require/fixtures/exports-default/test.js
  182. +6 −0 test/config-require/fixtures/failed-import/package.json
  183. +5 −0 test/config-require/fixtures/failed-import/test.js
  184. +5 −0 test/config-require/fixtures/non-json/ava.config.js
  185. +3 −0 test/config-require/fixtures/non-json/package.json
  186. +5 −0 test/config-require/fixtures/non-json/required.mjs
  187. +7 −0 test/config-require/fixtures/non-json/test.js
  188. +1 −0 test/config-require/fixtures/require-dependency/.gitignore
  189. +5 −0 test/config-require/fixtures/require-dependency/node_modules/@ava/stub/index.js
  190. +4 −0 test/config-require/fixtures/require-dependency/node_modules/@ava/stub/package.json
  191. +8 −0 test/config-require/fixtures/require-dependency/package.json
  192. +6 −0 test/config-require/fixtures/require-dependency/test.js
  193. +6 −0 test/config-require/fixtures/single-argument/package.json
  194. +5 −0 test/config-require/fixtures/single-argument/required.js
  195. +7 −0 test/config-require/fixtures/single-argument/test.js
  196. +7 −0 test/config-require/fixtures/with-arguments/ava.config.js
  197. +3 −0 test/config-require/fixtures/with-arguments/package.json
  198. +7 −0 test/config-require/fixtures/with-arguments/required.cjs
  199. +5 −0 test/config-require/fixtures/with-arguments/required.mjs
  200. +1 −0 test/config-require/fixtures/with-arguments/side-effect.js
  201. +15 −0 test/config-require/fixtures/with-arguments/test.js
  202. +38 −0 test/config-require/test.js
  203. +1 −1 test/config/integration.js
  204. +213 −24 test/external-assertions/snapshots/test.js.md
  205. BIN test/external-assertions/snapshots/test.js.snap
  206. +29 −8 test/external-assertions/test.js
  207. +3 −1 test/globs/fixtures/ignored-by-watcher/package.json
  208. +2 −2 test/globs/snapshots/test.js.md
  209. BIN test/globs/snapshots/test.js.snap
  210. +1 −1 test/globs/test.js
  211. +92 −46 test/helpers/exec.js
  212. +3 −2 test/helpers/with-temporary-fixture.js
  213. +1 −0 test/internal-events/fixtures/.gitignore
  214. +19 −0 test/internal-events/fixtures/ava.config.js
  215. +3 −0 test/internal-events/fixtures/package.json
  216. +5 −0 test/internal-events/fixtures/test.js
  217. +28 −0 test/internal-events/test.js
  218. +1 −1 test/macros/fixtures/macros.js
  219. +2 −1 test/shared-workers/timeout/fixtures/test.js
  220. +2 −2 test/shared-workers/worker-protocol/fixtures/_declare.js
  221. +1 −0 test/snapshot-order/fixtures/randomness/.gitignore
  222. BIN test/snapshot-order/fixtures/randomness/test.js.snap
  223. +4 −1 test/snapshot-order/randomness.js
  224. +22 −10 test/snapshot-order/snapshots/randomness.js.md
  225. BIN test/snapshot-order/snapshots/randomness.js.snap
  226. +1 −1 test/snapshot-removal/fixtures/fixed-snapshot-dir/test.js
  227. +1 −1 test/snapshot-removal/fixtures/no-snapshots/test.js
  228. +1 −1 test/snapshot-removal/fixtures/only-test/test.js
  229. +1 −1 test/snapshot-removal/fixtures/removal/test.js
  230. +1 −1 test/snapshot-removal/fixtures/skipped-snapshots-in-try/test.js
  231. +1 −1 test/snapshot-removal/fixtures/skipped-snapshots/test.js
  232. +1 −1 test/snapshot-removal/fixtures/skipped-tests/test.js
  233. +1 −1 test/snapshot-removal/fixtures/snapshot-dir/test/test.js
  234. +1 −1 test/snapshot-removal/fixtures/try/test.js
  235. +1 −1 test/snapshot-tests/fixtures/corrupt/test.js
  236. +1 −1 test/snapshot-tests/fixtures/large/test.js
  237. +1 −1 test/snapshot-tests/fixtures/multiline-snapshot-label/test.js
  238. +1 −1 test/snapshot-tests/fixtures/normalized-title-in-snapshots/test.js
  239. +1 −1 test/snapshot-tests/fixtures/normalized-title-in-stdout/test.js
  240. +4 −8 test/snapshot-tests/formatting.js
  241. +1 −1 test/snapshot-workflow/fixtures/adding-skipped-snapshots/test.js
  242. +1 −1 test/snapshot-workflow/fixtures/adding-snapshots/test.js
  243. +1 −1 test/snapshot-workflow/fixtures/adding-test/test.js
  244. +1 −1 test/snapshot-workflow/fixtures/changing-label/test.js
  245. +1 −1 test/snapshot-workflow/fixtures/changing-title/test.js
  246. +1 −1 test/snapshot-workflow/fixtures/commit-skip/test.js
  247. +1 −1 test/snapshot-workflow/fixtures/discard-skip/test.js
  248. +1 −1 test/snapshot-workflow/fixtures/filling-in-blanks/test.js
  249. +1 −1 test/snapshot-workflow/fixtures/first-run/test.js
  250. +1 −1 test/snapshot-workflow/fixtures/invalid-snapfile/test.js
  251. +1 −1 test/snapshot-workflow/fixtures/removing-all-snapshots/test.js
  252. +1 −1 test/snapshot-workflow/fixtures/removing-snapshots/test.js
  253. +1 −1 test/snapshot-workflow/fixtures/removing-test/test.js
  254. +1 −1 test/snapshot-workflow/fixtures/reorder/test.js
  255. +1 −1 test/snapshot-workflow/fixtures/select-test-update/test.js
  256. +1 −1 test/snapshot-workflow/fixtures/skipping-snapshot-update/test.js
  257. +1 −1 test/snapshot-workflow/fixtures/skipping-snapshot/test.js
  258. +1 −1 test/snapshot-workflow/fixtures/skipping-test-update/test.js
  259. +1 −1 test/snapshot-workflow/fixtures/skipping-test/test.js
  260. +8 −3 test/snapshot-workflow/helpers/macros.js
  261. +1 −1 test/test-timeouts/snapshots/test.js.md
  262. BIN test/test-timeouts/snapshots/test.js.snap
  263. +1 −1 test/test-timeouts/test.js
  264. +28 −0 test/watch-mode/availability.js
  265. +80 −0 test/watch-mode/basic-functionality.js
  266. +5 −0 test/watch-mode/fixtures/basic/ava.config.js
  267. +3 −0 test/watch-mode/fixtures/basic/ignored-by-watcher.js
  268. +3 −0 test/watch-mode/fixtures/basic/not-depended-on.js
  269. +3 −0 test/watch-mode/fixtures/basic/package.json
  270. +1 −0 test/watch-mode/fixtures/basic/source.js
  271. +7 −0 test/watch-mode/fixtures/basic/source.test.js
  272. +9 −0 test/watch-mode/fixtures/basic/test.js
  273. +9 −0 test/watch-mode/fixtures/exclusive/a.test.js
  274. +5 −0 test/watch-mode/fixtures/exclusive/ava.config.js
  275. +9 −0 test/watch-mode/fixtures/exclusive/b.test.js
  276. +9 −0 test/watch-mode/fixtures/exclusive/c.test.js
  277. +3 −0 test/watch-mode/fixtures/exclusive/package.json
  278. +1 −0 test/watch-mode/fixtures/typescript-inline/.gitignore
  279. +8 −0 test/watch-mode/fixtures/typescript-inline/ava.config.js
  280. +3 −0 test/watch-mode/fixtures/typescript-inline/package.json
  281. +10 −0 test/watch-mode/fixtures/typescript-inline/src/test.ts
  282. +13 −0 test/watch-mode/fixtures/typescript-inline/tsconfig.json
  283. +11 −0 test/watch-mode/fixtures/typescript-precompiled/ava.config.js
  284. +5 −0 test/watch-mode/fixtures/typescript-precompiled/build/test.js
  285. +3 −0 test/watch-mode/fixtures/typescript-precompiled/package.json
  286. +11 −0 test/watch-mode/fixtures/typescript-precompiled/src/test.ts
  287. +12 −0 test/watch-mode/fixtures/typescript-precompiled/tsconfig.json
  288. +166 −0 test/watch-mode/helpers/watch.js
  289. +126 −0 test/watch-mode/scenarios.js
  290. +84 −0 test/watch-mode/typescript.js
  291. +107 −49 types/assertions.d.cts
  292. +0 −2 types/shared-worker.d.cts
  293. +143 −0 types/state-change-events.d.cts
  294. +10 −5 types/test-fn.d.cts
5 changes: 4 additions & 1 deletion .c8rc.json
Original file line number Diff line number Diff line change
@@ -2,7 +2,10 @@
"all": true,
"exclude": [
"{coverage,examples,media,test,test-types,test-tap,types}/**",
"*.config.cjs",
"entrypoints/**",
"!entrypoints/eslint-plugin-helper.cjs",
"ava.config.js",
".xo-config.cjs",
"*.d.*(c|m)ts"
],
"reporter": [
35 changes: 17 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -15,24 +15,22 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [^14.19, ^16.15, ^18, ^20]
os: [ubuntu-latest, windows-latest]
node-version: [^18.18, ^20.8, ^21]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Enable symlinks
if: matrix.os == 'windows-latest'
run: |
git config core.symlinks true
git reset --hard
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install npm@8 for Node.js 14
if: matrix.node-version == '^14.19'
run: npm install --global npm@^8
- run: npm install --no-audit
- run: npm run cover
- run: ./scripts/ci.sh
shell: bash
- uses: codecov/codecov-action@v3
with:
files: coverage/lcov.info
@@ -43,10 +41,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ts-version: [~4.7, ~4.8, ~4.9, ~5.0]
ts-version: [~5.2, ~5.3]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: npm
@@ -61,8 +59,8 @@ jobs:
name: Test package-lock for unexpected modifications
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: npm
@@ -81,19 +79,20 @@ jobs:
name: Install dependencies without using a lockfile
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: package.json
- run: npm install --no-package-lock --no-audit
- run: npm run cover
- run: ./scripts/ci.sh
shell: bash

xo:
name: Lint source files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: npm
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/.tap
/coverage
/media/**/node_modules/
/node_modules/
16 changes: 7 additions & 9 deletions .taprc
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
browser: false
coverage: false
files:
- "test-tap/*.js"
- "test-tap/reporters/*.js"
- "test-tap/integration/*.js"
flow: false
jsx: false
disable-coverage: true
allow-empty-coverage: true
include:
- test-tap/*.js
- test-tap/reporters/*.js
- test-tap/integration/*.js
timeout: 300
ts: false
tsconfig: test-tap/tsconfig.json
4 changes: 4 additions & 0 deletions .xo-config.cjs
Original file line number Diff line number Diff line change
@@ -9,8 +9,11 @@ module.exports = {
'media/**',
'test/config/fixtures/config-errors/test.js',
'test/line-numbers/fixtures/line-numbers.js',
'test/**/fixtures',
'test-tap/fixture/snapshots/test-sourcemaps/build/**',
'test-tap/fixture/report/edgecases/ast-syntax-error.cjs',
'test-tap/fixture/**/*.ts',
'test-types',
'examples/typescript-*/**/*.ts',
],
rules: {
@@ -25,6 +28,7 @@ module.exports = {
],
'import/newline-after-import': 'error',
'unicorn/require-post-message-target-origin': 'off',
'unicorn/prefer-event-target': 'off',
},
overrides: [
{
6 changes: 5 additions & 1 deletion ava.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import process from 'node:process';

const skipWatchMode = process.env.TEST_AVA_SKIP_WATCH_MODE ? ['!test/watch-mode/**'] : [];

export default { // eslint-disable-line import/no-anonymous-default-export
files: ['test/**', '!test/**/{fixtures,helpers}/**'],
files: ['test/**', '!test/**/{fixtures,helpers}/**', ...skipWatchMode],
ignoredByWatcher: ['{coverage,docs,media,test-types,test-tap}/**'],
environmentVariables: {
AVA_FAKE_SCM_ROOT: '.fake-root', // This is an internal test flag.
2 changes: 2 additions & 0 deletions docs/02-execution-context.md
Original file line number Diff line number Diff line change
@@ -45,3 +45,5 @@ You cannot use `t.teardown()` in hooks either.
## `t.timeout(ms)`

Set a timeout for the test, in milliseconds. The test will fail if this timeout is exceeded. The timeout is reset each time an assertion is made.

Use `t.timeout.clear()` to clear the timeout and restore the default behavior.
50 changes: 25 additions & 25 deletions docs/03-assertions.md
Original file line number Diff line number Diff line change
@@ -21,7 +21,13 @@ test('unicorns are truthy', t => {

If multiple assertion failures are encountered within a single test, AVA will only display the *first* one.

Assertions return a boolean indicating whether they passed. You can use this to return early from a test. Note that this does not apply to the "throws" and `snapshot()` assertions.
In AVA 6, assertions return `true` if they've passed and throw otherwise. Catching this error does not cause the test to pass. The error value is undocumented.

In AVA 5, assertions return a boolean and do not throw. You can use this to return early from a test. The `snapshot()` assertion does not return a value.

If you use TypeScript you can use some assertions as type guards.

Note that the "throws" assertions return the error that was thrown (provided the assertion passed). In AVA 5, they return `undefined` if the assertion failed.

## Assertion planning

@@ -95,47 +101,47 @@ test('custom assertion', t => {

### `.pass(message?)`

Passing assertion. Returns a boolean indicating whether the assertion passed.
Passing assertion.

### `.fail(message?)`

Failing assertion. Returns a boolean indicating whether the assertion passed.
Failing assertion.

### `.assert(actual, message?)`

Asserts that `actual` is truthy. Returns a boolean indicating whether the assertion passed.
Asserts that `actual` is truthy.

### `.truthy(actual, message?)`

Assert that `actual` is truthy. Returns a boolean indicating whether the assertion passed.
Assert that `actual` is truthy.

### `.falsy(actual, message?)`

Assert that `actual` is falsy. Returns a boolean indicating whether the assertion passed.
Assert that `actual` is falsy.

### `.true(actual, message?)`

Assert that `actual` is `true`. Returns a boolean indicating whether the assertion passed.
Assert that `actual` is `true`.

### `.false(actual, message?)`

Assert that `actual` is `false`. Returns a boolean indicating whether the assertion passed.
Assert that `actual` is `false`.

### `.is(actual, expected, message?)`

Assert that `actual` is the same as `expected`. This is based on [`Object.is()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is). Returns a boolean indicating whether the assertion passed.
Assert that `actual` is the same as `expected`. This is based on [`Object.is()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is).

### `.not(actual, expected, message?)`

Assert that `actual` is not the same as `expected`. This is based on [`Object.is()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is). Returns a boolean indicating whether the assertion passed.
Assert that `actual` is not the same as `expected`. This is based on [`Object.is()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is).

### `.deepEqual(actual, expected, message?)`

Assert that `actual` is deeply equal to `expected`. See [Concordance](https://github.com/concordancejs/concordance) for details.

### `.notDeepEqual(actual, expected, message?)`

Assert that `actual` is not deeply equal to `expected`. The inverse of `.deepEqual()`. Returns a boolean indicating whether the assertion passed.
Assert that `actual` is not deeply equal to `expected`. The inverse of `.deepEqual()`.

### `.like(actual, selector, message?)`

@@ -168,14 +174,12 @@ You can also use arrays, but note that any indices in `actual` that are not in `
t.like([1, 2, 3, 4], [1, , 3])
```

Finally, this returns a boolean indicating whether the assertion passed.

### `.throws(fn, expectation?, message?)`

Assert that an error is thrown. `fn` must be a function which should throw. The thrown value *must* be an error. It is returned so you can run more assertions against it. If the assertion fails then `undefined` is returned.

Assert that an error is thrown. `fn` must be a function which should throw. By default, the thrown value *must* be an error. It is returned so you can run more assertions against it.
`expectation` can be an object with one or more of the following properties:

* `any`: a boolean only available in AVA 6, if `true` then the thrown value does not need to be an error. Defaults to `false`
* `instanceOf`: a constructor, the thrown error must be an instance of
* `is`: the thrown error must be strictly equal to `expectation.is`
* `message`: the following types are valid:
@@ -207,10 +211,10 @@ test('throws', t => {

Assert that an error is thrown. `thrower` can be an async function which should throw, or a promise that should reject. This assertion must be awaited.

The thrown value *must* be an error. It is returned so you can run more assertions against it. If the assertion fails then `undefined` is returned.

By default, the thrown value *must* be an error. It is returned so you can run more assertions against it.
`expectation` can be an object with one or more of the following properties:

* `any`: a boolean only available in AVA 6, if `true` then the thrown value does not need to be an error. Defaults to `false`
* `instanceOf`: a constructor, the thrown error must be an instance of
* `is`: the thrown error must be strictly equal to `expectation.is`
* `message`: the following types are valid:
@@ -243,7 +247,7 @@ test('rejects', async t => {

### `.notThrows(fn, message?)`

Assert that no error is thrown. `fn` must be a function which shouldn't throw. Does not return anything.
Assert that no error is thrown. `fn` must be a function which shouldn't throw.

### `.notThrowsAsync(nonThrower, message?)`

@@ -257,15 +261,13 @@ test('resolves', async t => {
});
```

Does not return anything.

### `.regex(contents, regex, message?)`

Assert that `contents` matches `regex`. Returns a boolean indicating whether the assertion passed.
Assert that `contents` matches `regex`.

### `.notRegex(contents, regex, message?)`

Assert that `contents` does not match `regex`. Returns a boolean indicating whether the assertion passed.
Assert that `contents` does not match `regex`.

### `.snapshot(expected, message?)`

@@ -277,7 +279,7 @@ Compares the `expected` value with a previously recorded snapshot. Snapshots are

The implementation function behaves the same as any other test function. You can even use macros. The first title argument is always optional. Additional arguments are passed to the implementation or macro function.

`.try()` is an asynchronous function. You must `await` it. The result object has `commit()` and `discard()` methods. You must decide whether to commit or discard the result. If you commit a failed result, your test will fail.
`.try()` is an asynchronous function. You must `await` it. The result object has `commit()` and `discard()` methods. You must decide whether to commit or discard the result. If you commit a failed result, your test will fail. In AVA 6, calling `commit()` on a failed result will throw an error.

You can check whether the attempt passed using the `passed` property. Any assertion errors are available through the `errors` property. The attempt title is available through the `title` property.

@@ -316,5 +318,3 @@ test('flaky macro', async t => {
secondTry.commit();
});
```

Returns a boolean indicating whether the assertion passed.
Loading