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",

src/jest-console/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-console",
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-core/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-core",
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-diff/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-diff",
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-each/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-each",
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-environment-roblox/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-environment-roblox",
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-environment/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-environment",
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-fake-timers/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-fake-timers",
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-get-type/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-get-type",
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-globals/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-globals",
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-jasmine2/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-jasmine2",
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-matcher-utils/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-matcher-utils",
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-message-util/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-message-util",
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-mock-genv/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-mock-genv",
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-mock-rbx/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-mock-rbx",
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-mock/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-mock",
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-reporters/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-reporters",
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-roblox-shared/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-roblox-shared",
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-runner/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-runner",
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-runtime/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-runtime",
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-snapshot-serializer-raw/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-snapshot-serializer-raw",
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-snapshot/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-snapshot",
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-test-result/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-test-result",
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-types/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-types",
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-util/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-util",
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-validate/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-validate",
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/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",
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/path/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jsdotlua/path",
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/pretty-format/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jsdotlua/pretty-format",
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/test-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@jsdotlua/test-utils",
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/throat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jsdotlua/throat",
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)