From ca47c213f6ee7cc1f255ae39371f60dc5e00cc3d Mon Sep 17 00:00:00 2001 From: Anton Matosov Date: Fri, 2 Oct 2020 14:07:17 -0700 Subject: [PATCH 1/3] Update changelog for 0.3.4 release --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 396f919..216775d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # TestEZ Changelog ## Unreleased Changes + + +## 0.3.4 (2020-10-02) * Added `expect.extend` which allows projects to register their own, opinionated expectations that integrates into `expect`. ([#142](https://github.com/Roblox/testez/pull/142)) * Modeled after [jest's implementation](https://jestjs.io/docs/en/expect#expectextendmatchers). * Matchers are functions that should return an object with with two keys, boolean `pass` and a string `message` @@ -11,6 +14,7 @@ * Change the way errors are collected to call tostring on them before further processing. * Luau allows non-string errors, but not concatenating non-strings or passing non-strings to `debug.traceback` as a message, so TestRunner needs to do that step. This is a temporary fix as the better solution would be to retain the error in object form for as long as possible to give the reporter more to work with. * This also makes a slight change to what's in the traceback to eliminate the unnecessary line mentioning the error collection function. +* Fix debugging of tests in Studio ## 0.3.3 (2020-09-25) * Remove the lifecycle hooks from the session tree. This prevents the `[?]` spam from the reporter not recognizing these nodes. From dcfe194fbc4dc1cc46304b86e7e2fb1eec477fc1 Mon Sep 17 00:00:00 2001 From: Anton Matosov Date: Fri, 2 Oct 2020 14:14:49 -0700 Subject: [PATCH 2/3] bump version --- rotriever.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rotriever.toml b/rotriever.toml index 17accd3..8ad96b9 100644 --- a/rotriever.toml +++ b/rotriever.toml @@ -3,4 +3,4 @@ name = "roblox/testez" author = "Roblox" license = "Apache2" content_root = "src" -version = "0.3.3" +version = "0.3.4" From e21c719cc63dcd1c465608645c5e4ae9d849ca5b Mon Sep 17 00:00:00 2001 From: Anton Matosov Date: Fri, 2 Oct 2020 14:20:32 -0700 Subject: [PATCH 3/3] Bump to 0.4.0 as we are adding new functionality --- CHANGELOG.md | 2 +- rotriever.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 216775d..be89177 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased Changes -## 0.3.4 (2020-10-02) +## 0.4.0 (2020-10-02) * Added `expect.extend` which allows projects to register their own, opinionated expectations that integrates into `expect`. ([#142](https://github.com/Roblox/testez/pull/142)) * Modeled after [jest's implementation](https://jestjs.io/docs/en/expect#expectextendmatchers). * Matchers are functions that should return an object with with two keys, boolean `pass` and a string `message` diff --git a/rotriever.toml b/rotriever.toml index 8ad96b9..af7422a 100644 --- a/rotriever.toml +++ b/rotriever.toml @@ -3,4 +3,4 @@ name = "roblox/testez" author = "Roblox" license = "Apache2" content_root = "src" -version = "0.3.4" +version = "0.4.0"