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 9e3cecc commit ca69e94Copy full SHA for ca69e94
test/TestCases.template.js
@@ -187,8 +187,12 @@ const describeCases = config => {
187
})
188
};
189
beforeAll(done => {
190
+ FileCachePlugin.purgeMemoryCache();
191
rimraf(cacheDirectory, done);
192
});
193
+ afterAll(() => {
194
195
+ });
196
if (config.cache) {
197
it(testName + " should pre-compile", done => {
198
FileCachePlugin.purgeMemoryCache();
test/setupTestFramework.js
@@ -50,3 +50,8 @@ if (process.env.ALTERNATIVE_SORT) {
50
return this;
51
52
}
53
+
54
+// Workaround for a memory leak in wabt
55
+// It leaks an Error object on construction
56
+// so it leaks the whole stack trace
57
+require("wast-loader");
0 commit comments