Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

[Cypress]如果遇到測試當掉(error code 5)

內容目錄

如果遇到測試當掉(error code 5)

由於用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,
  },
});