1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-21 13:47:39 +02:00
unleash.unleash/src/lib/openapi/spec/__snapshots__/update-feature-strategy-segments-schema.test.ts.snap
Christopher Kolstad b681702b77
task: migrate tests to vitest
Vitest Pros:
* Automated failing test comments on github PRs
* A nice local UI with incremental testing when changing files (`yarn
test:ui`)
* Also nicely supported in all major IDEs, click to run test works (so
we won't miss what we had with jest).
* Works well with ESM

Vitest Cons:
* The ESBuild transformer vitest uses takes a little longer to transform
than our current SWC/jest setup, however, it is possible to setup SWC as
the transformer for vitest as well (though it only does one transform,
so we're paying ~7-10 seconds instead of ~ 2-3 seconds in transform
phase).
* Exposes how slow our tests are (tongue in cheek here)
2025-05-16 11:19:10 +02:00

36 lines
838 B
Plaintext

// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`updateFeatureStrategySegmentsSchema schema 1`] = `
{
"errors": [
{
"instancePath": "",
"keyword": "required",
"message": "must have required property 'projectId'",
"params": {
"missingProperty": "projectId",
},
"schemaPath": "#/required",
},
],
"schema": "#/components/schemas/updateFeatureStrategySegmentsSchema",
}
`;
exports[`updateFeatureStrategySegmentsSchema schema 2`] = `
{
"errors": [
{
"instancePath": "",
"keyword": "required",
"message": "must have required property 'projectId'",
"params": {
"missingProperty": "projectId",
},
"schemaPath": "#/required",
},
],
"schema": "#/components/schemas/updateFeatureStrategySegmentsSchema",
}
`;