Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.1.0
- Changed `CoverageRoots` to accept script instances instead of module tables for full-file coverage
- Added file-level coverage that includes local/unexported functions via `debug.getcoverage(script)`
- Added directory discovery for CoverageRoots using the filesystem API
- Added coverage test fixtures with `CoverageFixtures/SampleModule.luau`
- Changed Context from write-once to allow reassignment for beforeEach compatibility
- Fixed lifecycle tests that relied on sequential execution order

## 1.0.1
- Fixed infinite loop when collecting coverage on modules with `__call` metatables (e.g., chalk-luau)

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.1
1.1.0
2 changes: 1 addition & 1 deletion wally.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "horsenuggets/testable"
description = "A Luau testing framework based off of TestEZ."
version = "1.0.1"
version = "1.1.0"
license = "MIT"
realm = "shared"
registry = "https://github.com/UpliftGames/wally-index"
Expand Down
Loading