testdossier 0.3.1 → 0.3.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 +2 -2
- package/lib/testdossier.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ Upload a completed test report from a developer laptop, test machine, or CI
|
|
|
8
8
|
job. Run these commands in the project containing your automated tests:
|
|
9
9
|
|
|
10
10
|
1. Install the latest CLI in the project. To pin a release instead, replace
|
|
11
|
-
`@latest` with an exact version such as `@0.3.
|
|
11
|
+
`@latest` with an exact version such as `@0.3.2`:
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
npm install --save-dev testdossier@latest
|
|
@@ -225,7 +225,7 @@ npm install --save-dev testdossier@latest
|
|
|
225
225
|
npx testdossier init
|
|
226
226
|
```
|
|
227
227
|
|
|
228
|
-
Use `npm install --save-dev testdossier@0.3.
|
|
228
|
+
Use `npm install --save-dev testdossier@0.3.2` when the repository should pin
|
|
229
229
|
that exact release. In either case, subsequent commands remain
|
|
230
230
|
`npx testdossier ...`; the version selector belongs only to installation.
|
|
231
231
|
|
package/lib/testdossier.mjs
CHANGED
|
@@ -3,7 +3,7 @@ import { mkdir, readFile, stat, writeFile } from "node:fs/promises";
|
|
|
3
3
|
import { basename, dirname, extname, isAbsolute, join, relative, resolve, sep } from "node:path";
|
|
4
4
|
import { collectSourceContexts, parseSourceConfig, wrapSourceEnvelope } from "./source-context.mjs";
|
|
5
5
|
|
|
6
|
-
export const VERSION = "0.3.
|
|
6
|
+
export const VERSION = "0.3.2";
|
|
7
7
|
const DEFAULT_ORIGIN = "https://testdossier.com";
|
|
8
8
|
const ENV_FILE_NAME = ".env.testdossier";
|
|
9
9
|
const CONFIG_FILE_NAME = "testdossier.json";
|