File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ const gitignoreFile = path.join(buildDir, ".gitignore");
105105const packageFile = path . join ( projectDir , "package.json" ) ;
106106
107107const indexHtmlFile = path . join ( projectDir , "index.html" ) ;
108- const testsIndexFile = path . join ( testsDir , "index.test. js" ) ;
108+ const testsIndexFile = path . join ( testsDir , "index.js" ) ;
109109
110110const paths = [
111111 [ assemblyDir , "Directory holding the AssemblyScript sources being compiled to WebAssembly." ] ,
@@ -427,7 +427,7 @@ function ensureTestsDirectory() {
427427}
428428
429429function ensureTestsIndexJs ( ) {
430- console . log ( "- Making sure that 'test/index.test. js' exists..." ) ;
430+ console . log ( "- Making sure that 'test/index.js' exists..." ) ;
431431 if ( ! fs . existsSync ( testsIndexFile ) ) {
432432 fs . writeFileSync ( testsIndexFile , [
433433 "import assert from \"node:assert\";" ,
You can’t perform that action at this time.
0 commit comments