Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
58c710a
Add subprocess tests for fail() function
horsenuggets Jan 11, 2026
b017b5c
Add .spec suffix to test file headers
horsenuggets Jan 11, 2026
d542ed0
Add claude-md-luau submodule
horsenuggets Jan 12, 2026
679e448
Update copyright year to 2026
horsenuggets Jan 12, 2026
99229ca
Use lowercase project name in README
horsenuggets Jan 12, 2026
5a7619d
Add VS Code workspace configuration
horsenuggets Jan 12, 2026
289d9e0
Remove header from root init.luau
horsenuggets Jan 13, 2026
68ae248
Update claude-md-luau submodule
horsenuggets Jan 13, 2026
b55f317
Use luau-cicd submodule for CI/CD scripts
horsenuggets Jan 13, 2026
f1304d0
Bump version to 0.1.0
horsenuggets Jan 13, 2026
e829db5
Refactor CI/CD workflow for new release process (#15)
horsenuggets Jan 13, 2026
a744ab9
Remove unsupported block_newline_gaps from stylua config (#16)
horsenuggets Jan 13, 2026
5635f83
Remove diff-check from release workflow (#17)
horsenuggets Jan 13, 2026
882f06b
Add diff-check back to release workflow (#18)
horsenuggets Jan 14, 2026
006fe54
Update CHANGELOG.md to new format (#20)
horsenuggets Jan 16, 2026
148f77f
Update submodules to latest (#22)
horsenuggets Jan 19, 2026
af1ed57
Update submodules (#23)
horsenuggets Mar 18, 2026
9528440
Standardize CI workflows (#26)
horsenuggets Mar 27, 2026
455f10e
Capitalize Git as a proper noun (#24)
horsenuggets Mar 27, 2026
0ebd722
Bump toolchain versions and sync with luau-package-template (#27)
horsenuggets Mar 27, 2026
f314571
Add code coverage support and dictionary syntax for test roots (#28)
horsenuggets Mar 30, 2026
450e1d7
Add Roblox cloud E2E tests and fix Roblox compatibility (#30)
horsenuggets Mar 31, 2026
41cc362
Run Roblox cloud E2E tests in CI (#32)
horsenuggets Mar 31, 2026
a7af71a
Add coverage unit tests and bump to 1.0.0 (#33)
horsenuggets Mar 31, 2026
1ea9e21
Update submodules (#35)
horsenuggets Mar 31, 2026
dda2dcb
Use SSH URLs for submodules (#36)
horsenuggets Mar 31, 2026
c3ea6d9
Fix infinite loop on modules with __call metatables (#37)
horsenuggets Mar 31, 2026
ba6d6f7
Fix lint errors for dual-platform Roblox/Lune support (#39)
horsenuggets Mar 31, 2026
966cecf
Update submodules (#40)
horsenuggets Apr 1, 2026
0105583
Add file-level coverage via script instances (#41)
horsenuggets Apr 1, 2026
d8e4755
Bump version to 1.1.0 (#42)
horsenuggets Apr 1, 2026
cb814a8
Fix coverage discovery of init.luau modules (#44)
horsenuggets Apr 1, 2026
7823c44
Support script instances for test and coverage roots (#46)
horsenuggets Apr 1, 2026
656d6c1
Include .luaurc in Wally package and standardize (#48)
horsenuggets Apr 4, 2026
77f682d
Bump version to 1.1.3 (#49)
horsenuggets Apr 4, 2026
8c1e317
Merge remote-tracking branch 'origin/release' into release-1.1.3
horsenuggets Apr 4, 2026
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
*.bak
*.gen.*
*.lock
!.assetfile.lock
/*sourcemap.json

# Legacy
Expand Down
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[submodule "Submodules/claude-md"]
path = Submodules/claude-md
url = git@github.com:horsenuggets/claude-md.git
[submodule "Submodules/claude-md-luau"]
path = Submodules/claude-md-luau
url = git@github.com:horsenuggets/claude-md-luau.git
[submodule "Submodules/luau-cicd"]
path = Submodules/luau-cicd
url = git@github.com:horsenuggets/luau-cicd.git
[submodule "Submodules/claude-md"]
path = Submodules/claude-md
url = git@github.com:horsenuggets/claude-md.git
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.1.3
- Included `.luaurc` in Wally package for proper alias resolution

## 1.1.2
- Added script instance support for test roots (`Testable.run(script.Parent.Tests)`)
- Added automatic `.spec.luau` file discovery from directory script instances
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.2
1.1.3
13 changes: 11 additions & 2 deletions dev.project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,19 @@
"tree": {
"$path": "Source/Testable",
"DevPackages": {
"$path": "DevPackages"
"$path": {
"optional": "DevPackages"
}
},
"Packages": {
"$path": "Packages"
"$path": {
"optional": "Packages"
}
},
"ServerPackages": {
"$path": {
"optional": "ServerPackages"
}
}
}
}
2 changes: 1 addition & 1 deletion testable.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"luau-lsp.inlayHints.hideHintsForErrorTypes": true,
"luau-lsp.sourcemap.autogenerate": true,
"luau-lsp.sourcemap.enabled": true,
"luau-lsp.sourcemap.rojoProjectFile": "default.project.json",
"luau-lsp.sourcemap.rojoProjectFile": "dev.project.json",
"luau-lsp.sourcemap.sourcemapFile": "sourcemap.json",
"search.exclude": {
"**/Submodules/**": true
Expand Down
3 changes: 2 additions & 1 deletion wally.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[package]
name = "horsenuggets/testable"
description = "A Luau testing framework based off of TestEZ."
version = "1.1.2"
version = "1.1.3"
license = "MIT"
realm = "shared"
registry = "https://github.com/UpliftGames/wally-index"
repository = "https://github.com/horsenuggets/testable"
include = [
".luaurc",
"default.project.json",
"init.luau",
"LICENSE",
Expand Down
Loading