@isentinel/jest-roblox 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -137,6 +137,7 @@ Precedence: CLI flags > config file > extended config > defaults.
137
137
  | `showLuau` | Show Luau code snippets in failure output | `true` |
138
138
  | `cache` | Cache place file uploads by content hash | `true` |
139
139
  | `pollInterval` | How often to poll for results in ms (Open Cloud) | `500` |
140
+ | `parallel` | Number of concurrent Open Cloud sessions, or `"auto"` (= `min(jobs, 3)`) | — |
140
141
 
141
142
  ### Coverage fields
142
143
 
@@ -228,10 +229,17 @@ multiple concurrent projects aren't supported yet.
228
229
 
229
230
  Install the plugin with [Drillbit](https://github.com/jacktabscode/drillbit):
230
231
 
231
- ```bash
232
- drillbit install christopher-buss/jest-roblox-cli
232
+ #### Configuration file
233
+
234
+ Create a file named drillbit.toml in your project's directory.
235
+
236
+ ```toml
237
+ [plugins.jest_roblox]
238
+ github = "https://github.com/christopher-buss/jest-roblox-cli/releases/download/v0.2.1/JestRobloxRunner.rbxm"
233
239
  ```
234
240
 
241
+ Then run `drillbit` and it will download the plugin and install it in Studio for you.
242
+
235
243
  Or download `JestRobloxRunner.rbxm` from the
236
244
  [latest release](https://github.com/christopher-buss/jest-roblox-cli/releases)
237
245
  and drop it into your Studio plugins folder.
@@ -261,6 +269,7 @@ and drop it into your Studio plugins folder.
261
269
  | `--no-color` | Turn off colors |
262
270
  | `--no-cache` | Force a fresh place file upload |
263
271
  | `--pollInterval <ms>` | How often to check for results (Open Cloud) |
272
+ | `--parallel [n]` | Open Cloud concurrent sessions, or `auto` (= `min(jobs, 3)`) |
264
273
  | `--project <name...>` | Filter which named projects to run |
265
274
  | `--projects <path...>` | DataModel paths that hold tests |
266
275
  | `--setupFiles <path...>` | Scripts to run before env |
package/dist/cli.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { _ as ResolvedProjectConfig, n as ExecuteResult, v as CliOptions } from "./executor-CNz6_04-.mjs";
1
+ import { _ as ResolvedProjectConfig, n as ExecuteResult, v as CliOptions } from "./executor-B2IDh6bH.mjs";
2
2
 
3
3
  //#region src/cli.d.ts
4
4
  declare function parseArgs(args: Array<string>): CliOptions;