Skip to content

Commit 100ba0a

Browse files
Chore(deps-dev): Bump vitest and @vitest/coverage-v8 (#207)
* Chore(deps-dev): Bump vitest and @vitest/coverage-v8 Bumps [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) and [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8). These dependencies needed to be updated together. Updates `vitest` from 0.34.6 to 1.1.1 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v1.1.1/packages/vitest) Updates `@vitest/coverage-v8` from 0.34.6 to 1.1.1 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v1.1.1/packages/coverage-v8) --- updated-dependencies: - dependency-name: vitest dependency-type: direct:development update-type: version-update:semver-major - dependency-name: "@vitest/coverage-v8" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Fix broken tests due to major version change --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Brent Mealhouse <[email protected]>
1 parent a69af2e commit 100ba0a

File tree

9 files changed

+355
-273
lines changed

9 files changed

+355
-273
lines changed

package-lock.json

Lines changed: 346 additions & 264 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333
},
3434
"devDependencies": {
3535
"@tsconfig/node18": "18.2.2",
36-
"@vitest/coverage-v8": "0.34.6",
36+
"@vitest/coverage-v8": "1.1.1",
3737
"genversion": "3.1.1",
3838
"husky": "8.0.3",
3939
"lint-staged": "15.2.0",
4040
"prettier": "3.1.1",
4141
"typescript": "5.3.3",
42-
"vitest": "0.34.6",
42+
"vitest": "1.1.1",
4343
"xo": "0.56.0"
4444
},
4545
"repository": {

src/resources/1099-int.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ describe(`abound.${resource}.create()`, () => {
104104
await expect(async () =>
105105
abound[resource].create(request)
106106
).rejects.toThrowErrorMatchingInlineSnapshot(
107-
'"Your app is not authorized to do this (Code 6b6d7bbe)"'
107+
`[Error: Your app is not authorized to do this (Code 6b6d7bbe)]`
108108
);
109109
});
110110

src/resources/1099-k.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ describe(`abound.${resource}.create()`, () => {
112112
await expect(async () =>
113113
abound[resource].create(request)
114114
).rejects.toThrowErrorMatchingInlineSnapshot(
115-
'"Your app is not authorized to do this (Code 6b6d7bbe)"'
115+
`[Error: Your app is not authorized to do this (Code 6b6d7bbe)]`
116116
);
117117
});
118118

src/resources/1099-nec.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ describe(`abound.${resource}.create()`, () => {
9393
await expect(async () =>
9494
abound[resource].create(request)
9595
).rejects.toThrowErrorMatchingInlineSnapshot(
96-
'"Your app is not authorized to do this (Code 6b6d7bbe)"'
96+
`[Error: Your app is not authorized to do this (Code 6b6d7bbe)]`
9797
);
9898
});
9999

src/resources/access-tokens.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe(`abound.${resource}.create()`, () => {
2626
await expect(async () =>
2727
abound[resource].create(request)
2828
).rejects.toThrowErrorMatchingInlineSnapshot(
29-
'"Your app is not authorized to do this (Code 6b6d7bbe)"'
29+
`[Error: Your app is not authorized to do this (Code 6b6d7bbe)]`
3030
);
3131
});
3232

src/resources/tin-verifications.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ describe(`abound.${resource}.create()`, () => {
3030
await expect(async () =>
3131
abound[resource].create(request)
3232
).rejects.toThrowErrorMatchingInlineSnapshot(
33-
'"Your app is not authorized to do this (Code 6b6d7bbe)"'
33+
`[Error: Your app is not authorized to do this (Code 6b6d7bbe)]`
3434
);
3535
});
3636

src/resources/users.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ describe(`abound.${resource}.create()`, () => {
3838
await expect(async () =>
3939
abound[resource].create(request)
4040
).rejects.toThrowErrorMatchingInlineSnapshot(
41-
'"Your app is not authorized to do this (Code 6b6d7bbe)"'
41+
`[Error: Your app is not authorized to do this (Code 6b6d7bbe)]`
4242
);
4343
});
4444

src/resources/w-9.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ describe(`abound.${resource}.create()`, () => {
6161
await expect(async () =>
6262
abound[resource].create(request)
6363
).rejects.toThrowErrorMatchingInlineSnapshot(
64-
'"Your app is not authorized to do this (Code 6b6d7bbe)"'
64+
`[Error: Your app is not authorized to do this (Code 6b6d7bbe)]`
6565
);
6666
});
6767

0 commit comments

Comments
 (0)