We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 544b0ce commit d465d83Copy full SHA for d465d83
make.js
@@ -156,7 +156,7 @@ async function buildStorePackage() {
156
]);
157
}
158
159
-const runUnitTests = async () => {
+async function runUnitTests() {
160
// Import every test file.
161
const dir = path.join(projectPath, "tests/unit_tests");
162
const files = Array.from(Deno.readDirSync(dir)).map((f) => f.name).sort();
@@ -167,7 +167,7 @@ const runUnitTests = async () => {
167
168
169
return await shoulda.run();
170
-};
+}
171
172
function setupPuppeteerPageForTests(page) {
173
// The "console" event emitted has arguments which are promises. To obtain the values to be
0 commit comments