ember-vitest 0.1.0 → 0.1.1
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/.release-plan.json +5 -9
- package/CHANGELOG.md +11 -0
- package/README.md +2 -2
- package/package.json +1 -1
package/.release-plan.json
CHANGED
|
@@ -1,22 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"solution": {
|
|
3
3
|
"ember-vitest": {
|
|
4
|
-
"impact": "
|
|
5
|
-
"oldVersion": "0.0
|
|
6
|
-
"newVersion": "0.1.
|
|
4
|
+
"impact": "patch",
|
|
5
|
+
"oldVersion": "0.1.0",
|
|
6
|
+
"newVersion": "0.1.1",
|
|
7
7
|
"tagName": "latest",
|
|
8
8
|
"constraints": [
|
|
9
|
-
{
|
|
10
|
-
"impact": "minor",
|
|
11
|
-
"reason": "Appears in changelog section :rocket: Enhancement"
|
|
12
|
-
},
|
|
13
9
|
{
|
|
14
10
|
"impact": "patch",
|
|
15
|
-
"reason": "Appears in changelog section :
|
|
11
|
+
"reason": "Appears in changelog section :memo: Documentation"
|
|
16
12
|
}
|
|
17
13
|
],
|
|
18
14
|
"pkgJSONPath": "./package.json"
|
|
19
15
|
}
|
|
20
16
|
},
|
|
21
|
-
"description": "## Release (2025-
|
|
17
|
+
"description": "## Release (2025-10-02)\n\n* ember-vitest 0.1.1 (patch)\n\n#### :memo: Documentation\n* `ember-vitest`\n * [#5](https://github.com/NullVoxPopuli/ember-vitest/pull/5) Update context setup to `await using`? ([@johanrd](https://github.com/johanrd))\n\n#### Committers: 1\n- [@johanrd](https://github.com/johanrd)\n"
|
|
22
18
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Release (2025-10-02)
|
|
4
|
+
|
|
5
|
+
* ember-vitest 0.1.1 (patch)
|
|
6
|
+
|
|
7
|
+
#### :memo: Documentation
|
|
8
|
+
* `ember-vitest`
|
|
9
|
+
* [#5](https://github.com/NullVoxPopuli/ember-vitest/pull/5) Update context setup to `await using`? ([@johanrd](https://github.com/johanrd))
|
|
10
|
+
|
|
11
|
+
#### Committers: 1
|
|
12
|
+
- [@johanrd](https://github.com/johanrd)
|
|
13
|
+
|
|
3
14
|
## Release (2025-09-30)
|
|
4
15
|
|
|
5
16
|
* ember-vitest 0.1.0 (minor)
|
package/README.md
CHANGED
|
@@ -39,7 +39,7 @@ const expect = hardExpect.soft;
|
|
|
39
39
|
|
|
40
40
|
describe("example", () => {
|
|
41
41
|
test("it works", async () => {
|
|
42
|
-
using ctx = setupRenderingContext();
|
|
42
|
+
await using ctx = setupRenderingContext();
|
|
43
43
|
|
|
44
44
|
await ctx.render(<template>hello there</template>);
|
|
45
45
|
|
|
@@ -61,7 +61,7 @@ const expect = hardExpect.soft;
|
|
|
61
61
|
|
|
62
62
|
describe("example", () => {
|
|
63
63
|
test("has interactivity", async () => {
|
|
64
|
-
using ctx = setupRenderingContext();
|
|
64
|
+
await using ctx = setupRenderingContext();
|
|
65
65
|
|
|
66
66
|
const state = trackedObject({ value: 0 });
|
|
67
67
|
const increment = () => state.value++;
|