Skip to content

Latest commit

History

History
70 lines (43 loc) 路 1.94 KB

CHANGELOG.md

File metadata and controls

70 lines (43 loc) 路 1.94 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

0.2.4 - 2024-05-18

Changed

  • Upgraded glint to v1.0.0-rc2.

0.2.3 - 2024-05-13

Added

  • Added expect/to_loosely_equal for asserting on Float values.

0.2.2 - 2024-05-06

Changed

  • Pinned glint to v1.0.0-rc1.

0.2.1 - 2024-04-27

Added

  • Added test filtering using positional arguments to the CLI.
    • You can provide zero or more test filepaths for filtering.
    • gleam test -- example will run all tests in files that have "example" in their name.
    • gleam test -- test/startest_test.gleam will run just the tests in the specified file.

Changed

  • Renamed --filter CLI flag to --test-name-filter.

0.2.0 - 2024-04-20

Added

  • Added startest.run for running tests.
    • startest.run takes a Config and will auto-discover and run the tests.
  • Added Startest CLI
    • Calling startest.run in your test main will allow you to use the CLI via gleam test.
  • Added dot reporter.
  • Added a finished callback to Reporter.

Changed

  • Changed Reporter.report to take a ReporterContext as the first argument.

Removed

  • Removed startest.run_tests in favor of startest.run.

0.1.0 - 2024-04-19

  • Initial release.