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 23faead commit 15bbed0Copy full SHA for 15bbed0
tests/operations/index.mjs
@@ -11,7 +11,10 @@
11
* @license Apache-2.0
12
*/
13
14
-import { setLongTestFailure, logTestReport } from "../lib/utils.mjs";
+import {
15
+ setLongTestFailure,
16
+ logTestReport,
17
+} from "../lib/utils.mjs";
18
19
import TestRegister from "../lib/TestRegister.mjs";
20
import "./tests/AESKeyWrap.mjs";
@@ -165,14 +168,14 @@ const testStatus = {
165
168
allTestsPassing: true,
166
169
counts: {
167
170
total: 0,
- },
171
+ }
172
};
173
174
setLongTestFailure();
175
176
const logOpsTestReport = logTestReport.bind(null, testStatus);
177
-(async function () {
178
+(async function() {
179
const results = await TestRegister.runTests();
180
logOpsTestReport(results);
181
})();
0 commit comments