Skip to content

Commit ea1cdcb

Browse files
committed
chore: Fix invalid renderer test failure
1 parent 82a7e76 commit ea1cdcb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/test/renderer.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import { ScriptTarget, ModuleKind } from 'typescript';
77
function getFileIndex(base, dir: string = '', results: string[] = []) {
88
const files = FS.readdirSync(Path.join(base, dir));
99
files.forEach(function(file) {
10+
if (file === 'assets') {
11+
return;
12+
}
1013
file = Path.join(dir, file);
1114
if (FS.statSync(Path.join(base, file)).isDirectory()) {
1215
getFileIndex(base, file, results);

0 commit comments

Comments
 (0)