Skip to content

Commit d465d83

Browse files
committed
Cleanups
1 parent 544b0ce commit d465d83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

make.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ async function buildStorePackage() {
156156
]);
157157
}
158158

159-
const runUnitTests = async () => {
159+
async function runUnitTests() {
160160
// Import every test file.
161161
const dir = path.join(projectPath, "tests/unit_tests");
162162
const files = Array.from(Deno.readDirSync(dir)).map((f) => f.name).sort();
@@ -167,7 +167,7 @@ const runUnitTests = async () => {
167167
}
168168

169169
return await shoulda.run();
170-
};
170+
}
171171

172172
function setupPuppeteerPageForTests(page) {
173173
// The "console" event emitted has arguments which are promises. To obtain the values to be

0 commit comments

Comments
 (0)