Skip to content

Commit 5806789

Browse files
committed
Fix web test server for new repo
1 parent b32d836 commit 5806789

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/webTestServer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function dir(path: string, spec?: string, options?: any) {
6262
if (options.recursive && stat.isDirectory()) {
6363
paths = paths.concat(filesInFolder(folder + "/" + files[i]));
6464
} else if (stat.isFile() && (!spec || files[i].match(spec))) {
65-
var relativePath = folder.substring(folder.indexOf('/typescript/') + 12);
65+
var relativePath = folder.substring(folder.indexOf('/TypeScript/') + 12);
6666
paths.push(relativePath + "/" + files[i]);
6767
}
6868
}

0 commit comments

Comments
 (0)