Skip to content

Commit a5d089a

Browse files
committed
release: 3.10.0
1 parent f7456ea commit a5d089a

File tree

40 files changed

+42
-42
lines changed

40 files changed

+42
-42
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Roblox uses Jest Lua internally for testing their apps, in-game core scripts, bu
2020
Add this package to your `dev-dependencies` in your `wally.toml`, for example:
2121

2222
```toml
23-
JestGlobals = "jsdotlua/jest-globals@3.6.1-rc.2"
23+
JestGlobals = "jsdotlua/jest-globals@3.10.0"
2424
```
2525

2626
Then, require anything you need from `JestGlobals`:

docs/docs/GettingStarted.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Add the `JestGlobals` and `Jest` packages to your `dev-dependencies` in your `wa
1212

1313
```yaml title="wally.toml"
1414
[dev-dependencies]
15-
Jest = "jsdotlua/jest@3.6.1-rc.2"
16-
JestGlobals = "jsdotlua/jest-globals@3.6.1-rc.2"
15+
Jest = "jsdotlua/jest@3.10.0"
16+
JestGlobals = "jsdotlua/jest-globals@3.10.0"
1717
```
1818

1919
Run `wally install` to install Jest Lua.

docs/docs/TestEZMigration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Replace `TestEZ` with `JestGlobals` in your `Wally.toml`.
1616
```diff title="wally.toml"
1717
[dev-dependencies]
1818
- TestEZ = "roblox/testez@0.4.1"
19-
+ JestGlobals = "jsdotlua/jest-globals@3.6.1-rc.2"
19+
+ JestGlobals = "jsdotlua/jest-globals@3.10.0"
2020
```
2121

2222
Unlike TestEZ, which is injected into the global environment, you will need to explicitly require anything you need from `JestGlobals`. For example, to use the new Jest Lua assertion library, add this to the top of your test file.

docs/docs/UpgradingToJest3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ First, update your `wally.toml` to use Jest Lua v3.0. You'll also need to requir
1313

1414
```yaml title="rotriever.toml"
1515
[dev-dependencies]
16-
Jest = "jsdotlua/jest@3.6.1-rc.2"
17-
JestGlobals = "jsdotlua/jest-globals@3.6.1-rc.2"
16+
Jest = "jsdotlua/jest@3.10.0"
17+
JestGlobals = "jsdotlua/jest-globals@3.10.0"
1818
```
1919

2020
Update your `spec.lua`. Instead of using `TestEZ.TestBootStrap:run`, the main entrypoint is now `Jest.runCLI`. A basic bootstrap script can look like the following:

src/diff-sequences/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jsdotlua/diff-sequences",
3-
"version": "3.6.1-rc.2",
3+
"version": "3.10.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/jsdotlua/jest-lua.git",

src/emittery/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jsdotlua/emittery",
3-
"version": "3.6.1-rc.2",
3+
"version": "3.10.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/jsdotlua/jest-lua.git",

src/expect/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jsdotlua/expect",
3-
"version": "3.6.1-rc.2",
3+
"version": "3.10.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/jsdotlua/jest-lua.git",

src/jest-benchmark/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@jsdotlua/jest-benchmark",
33
"private": true,
4-
"version": "3.6.1-rc.2",
4+
"version": "3.10.0",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/jsdotlua/jest-lua.git",

src/jest-circus/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jsdotlua/jest-circus",
3-
"version": "3.6.1-rc.2",
3+
"version": "3.10.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/jsdotlua/jest-lua.git",

src/jest-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jsdotlua/jest-config",
3-
"version": "3.6.1-rc.2",
3+
"version": "3.10.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/jsdotlua/jest-lua.git",

0 commit comments

Comments
 (0)