Skip to content

Commit b36a28e

Browse files
committed
Update test snapshots
1 parent b06c2c6 commit b36a28e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/smoke-tests/--typescript.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ for (let packageManager of SUPPORTED_PACKAGE_MANAGERS) {
9595
await commandSucceeds(`${packageManager} run build`);
9696

9797
expect(
98-
(await filesMatching('src/**', addonDir)).sort(),
98+
await filesMatching('src/**', addonDir),
9999
`ensure we don't pollute the src dir with declarations and emit the js and .d.ts to the correct folders -- this should be the same as the input files (no change from the fixture + default files)`,
100100
).toMatchInlineSnapshot(`
101101
[
@@ -110,7 +110,7 @@ for (let packageManager of SUPPORTED_PACKAGE_MANAGERS) {
110110
`);
111111

112112
expect(
113-
(await filesMatching('{dist,declarations}/**/*', addonDir)).sort(),
113+
await filesMatching('{dist,declarations}/**/*', addonDir),
114114
`ensure we emit the correct files out of the box to the correct folders`,
115115
).toMatchInlineSnapshot(`
116116
[

0 commit comments

Comments
 (0)