Skip to content

Commit 221d8ed

Browse files
author
Ben Jervis
authored
Update the test names (#423)
1 parent 0481a9e commit 221d8ed

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

tests/stylesheets/__snapshots__/recipes.test.ts.snap

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`features - esbuild should create valid stylesheet 1`] = `
3+
exports[`recipes - esbuild should create valid stylesheet 1`] = `
44
"._103pmpm2 {
55
--_103pmpm0: #b0e0e6;
66
--_103pmpm1: #fff;
@@ -54,7 +54,7 @@ exports[`features - esbuild should create valid stylesheet 1`] = `
5454
"
5555
`;
5656

57-
exports[`features - mini-css-extract should create valid stylesheet 1`] = `
57+
exports[`recipes - mini-css-extract should create valid stylesheet 1`] = `
5858
".spi1fr2 {
5959
--spi1fr0: #b0e0e6;
6060
--spi1fr1: #fff;
@@ -108,7 +108,7 @@ exports[`features - mini-css-extract should create valid stylesheet 1`] = `
108108
"
109109
`;
110110

111-
exports[`features - vite should create valid stylesheet 1`] = `
111+
exports[`recipes - vite should create valid stylesheet 1`] = `
112112
"._103pmpm2 {
113113
--_103pmpm0: #b0e0e6;
114114
--_103pmpm1: #fff;

tests/stylesheets/__snapshots__/sprinkles.test.ts.snap

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`features - esbuild should create valid stylesheet 1`] = `
3+
exports[`sprinkles - esbuild should create valid stylesheet 1`] = `
44
"._1j5zl922 {
55
display: flex;
66
}
@@ -147,7 +147,7 @@ body > ._1j5zl921a {
147147
"
148148
`;
149149

150-
exports[`features - mini-css-extract should create valid stylesheet 1`] = `
150+
exports[`sprinkles - mini-css-extract should create valid stylesheet 1`] = `
151151
"._3nw5tz2 {
152152
display: flex;
153153
}
@@ -294,7 +294,7 @@ body > ._3nw5tz1a {
294294
"
295295
`;
296296

297-
exports[`features - vite should create valid stylesheet 1`] = `
297+
exports[`sprinkles - vite should create valid stylesheet 1`] = `
298298
"._1j5zl922 {
299299
display: flex;
300300
}

tests/stylesheets/__snapshots__/themed.test.ts.snap

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`features - esbuild should create valid stylesheet 1`] = `
3+
exports[`themed - esbuild should create valid stylesheet 1`] = `
44
".cvta170,
55
:root {
66
--cvta171: blue;
@@ -88,7 +88,7 @@ html .jteyb17 {
8888
"
8989
`;
9090

91-
exports[`features - mini-css-extract should create valid stylesheet 1`] = `
91+
exports[`themed - mini-css-extract should create valid stylesheet 1`] = `
9292
".cdwe0v0,
9393
:root {
9494
--cdwe0v1: blue;
@@ -176,7 +176,7 @@ html .blj6yb7 {
176176
"
177177
`;
178178

179-
exports[`features - vite should create valid stylesheet 1`] = `
179+
exports[`themed - vite should create valid stylesheet 1`] = `
180180
".cvta170,
181181
:root {
182182
--cvta171: blue;

tests/stylesheets/__snapshots__/unused-modules.test.ts.snap

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`features - esbuild should create valid stylesheet 1`] = `
3+
exports[`unused-modules - esbuild should create valid stylesheet 1`] = `
44
"body {
55
background-color: #e6e6fa;
66
border: 5px solid #000;
@@ -19,7 +19,7 @@ exports[`features - esbuild should create valid stylesheet 1`] = `
1919
"
2020
`;
2121

22-
exports[`features - mini-css-extract should create valid stylesheet 1`] = `
22+
exports[`unused-modules - mini-css-extract should create valid stylesheet 1`] = `
2323
"body {
2424
background-color: #e6e6fa;
2525
}
@@ -40,7 +40,7 @@ body {
4040
"
4141
`;
4242

43-
exports[`features - vite should create valid stylesheet 1`] = `
43+
exports[`unused-modules - vite should create valid stylesheet 1`] = `
4444
"body {
4545
background-color: #e6e6fa;
4646
border: 5px solid #000;

tests/stylesheets/recipes.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ let testCounter = 0;
66
const buildTypes = ['vite', 'esbuild', 'mini-css-extract'] as const;
77

88
buildTypes.forEach((buildType) => {
9-
describe(`features - ${buildType}`, () => {
9+
describe(`recipes - ${buildType}`, () => {
1010
let server: TestServer;
1111

1212
beforeAll(async () => {

tests/stylesheets/sprinkles.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ let testCounter = 0;
66
const buildTypes = ['vite', 'esbuild', 'mini-css-extract'] as const;
77

88
buildTypes.forEach((buildType) => {
9-
describe(`features - ${buildType}`, () => {
9+
describe(`sprinkles - ${buildType}`, () => {
1010
let server: TestServer;
1111

1212
beforeAll(async () => {

tests/stylesheets/themed.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ let testCounter = 0;
66
const buildTypes = ['vite', 'esbuild', 'mini-css-extract'] as const;
77

88
buildTypes.forEach((buildType) => {
9-
describe(`features - ${buildType}`, () => {
9+
describe(`themed - ${buildType}`, () => {
1010
let server: TestServer;
1111

1212
beforeAll(async () => {

tests/stylesheets/unused-modules.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ let testCounter = 0;
66
const buildTypes = ['vite', 'esbuild', 'mini-css-extract'] as const;
77

88
buildTypes.forEach((buildType) => {
9-
describe(`features - ${buildType}`, () => {
9+
describe(`unused-modules - ${buildType}`, () => {
1010
let server: TestServer;
1111

1212
beforeAll(async () => {

0 commit comments

Comments
 (0)