Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
在解決問題之道上不斷前行
由於用Cypress跑迴圈測試時遇到此問題,推測可能是記憶體爆掉了,查了一下可以將Cypress儲存測試結果的快照關閉,請參照中的numTestsKeptInMemory設定。
有很多人也遇到類似問題,解決方式如下:
將cypress.json or cypress.config.json中加入”numTestsKeptInMemory”: 0。
const { defineConfig } = require("cypress");
module.exports = defineConfig({
e2e: {
setupNodeEvents(on, config) {
// implement node event listeners here
},
"numTestsKeptInMemory": 0,
},
});