Skip to content

Commit 76f4cfd

Browse files
committed
up
1 parent dba56a7 commit 76f4cfd

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

tests/integration/async-chunks/index.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ test('should get correct value from async chunks', async () => {
66
const fixturePath = join(__dirname, 'default');
77
const { entryFiles } = await buildAndGetResults({ fixturePath });
88

9-
for (const format of ['esm', 'cjs']) {
9+
for (const format of ['esm', 'cjs'] as const) {
1010
const { foo } = await import(entryFiles[format]);
1111
expect(await foo()).toBe('dynamic');
1212
}

tests/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
},
77
"include": [
88
"e2e/**/*.ts",
9+
"integration/**/**.test.ts",
10+
"integration/**/rslib.config.ts",
11+
"integration/**/rslib.config.js",
912
"benchmark/**/*.ts",
1013
"playwright.config.ts",
1114
"scripts"

0 commit comments

Comments
 (0)