Skip to content

Commit e546d4d

Browse files
committed
[TASK] Update changed file hashes in snapshots
1 parent 0664107 commit e546d4d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

tests/integration/manifest-expected.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,21 @@
66
"isEntry": true
77
},
88
"packages/test_extension/Resources/Private/Main.entry.ts": {
9-
"file": "assets/Main.entry-Cy860-05.js",
9+
"file": "assets/Main.entry-BSYxZrtl.js",
1010
"name": "Main.entry",
1111
"src": "packages/test_extension/Resources/Private/Main.entry.ts",
1212
"isEntry": true,
1313
"css": [
14-
"assets/Main-CAg0JlTy.css"
14+
"assets/Main-VWk4xp3e.css"
1515
]
1616
},
1717
"vendor/test-vendor/vendor-extension/Resources/Private/Vendor.entry.ts": {
18-
"file": "assets/Vendor.entry-CxSfYUEX.js",
18+
"file": "assets/Vendor.entry-BTvEMMs0.js",
1919
"name": "Vendor.entry",
2020
"src": "vendor/test-vendor/vendor-extension/Resources/Private/Vendor.entry.ts",
2121
"isEntry": true,
2222
"css": [
23-
"assets/Vendor-CVaSH70M.css"
23+
"assets/Vendor-DE25tVp9.css"
2424
]
2525
}
2626
}

tests/integration/typo3project.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,31 +36,31 @@ test("vite build works for TYPO3 project", async () => {
3636
`);
3737

3838
expect((sortedOutput[2] as OutputAsset).fileName).toMatchInlineSnapshot(
39-
`"assets/Main-CAg0JlTy.css"`,
39+
`"assets/Main-VWk4xp3e.css"`,
4040
);
4141
expect((sortedOutput[2] as OutputAsset).source).toMatchInlineSnapshot(`
4242
"body{background:red}
4343
"
4444
`);
4545

4646
expect((sortedOutput[3] as OutputChunk).fileName).toMatchInlineSnapshot(
47-
`"assets/Main.entry-Cy860-05.js"`,
47+
`"assets/Main.entry-BSYxZrtl.js"`,
4848
);
4949
expect((sortedOutput[3] as OutputChunk).code).toMatchInlineSnapshot(`
5050
"console.log("Main.ts");
5151
"
5252
`);
5353

5454
expect((sortedOutput[4] as OutputAsset).fileName).toMatchInlineSnapshot(
55-
`"assets/Vendor-CVaSH70M.css"`,
55+
`"assets/Vendor-DE25tVp9.css"`,
5656
);
5757
expect((sortedOutput[4] as OutputAsset).source).toMatchInlineSnapshot(`
5858
"body{background:#00f}
5959
"
6060
`);
6161

6262
expect((sortedOutput[5] as OutputChunk).fileName).toMatchInlineSnapshot(
63-
`"assets/Vendor.entry-CxSfYUEX.js"`,
63+
`"assets/Vendor.entry-BTvEMMs0.js"`,
6464
);
6565
expect((sortedOutput[5] as OutputChunk).code).toMatchInlineSnapshot(`
6666
"console.log("Vendor.ts");

0 commit comments

Comments
 (0)