设置 Angular 8 次测试的顺序

Set order for Angular 8 tests

我的一个测试随机失败。我想设置一些调试顺序,默认情况下使用种子随机测试 运行。我试图在 karma.conf.js 中设置种子编号或设置 random: false 但没有效果。我使用默认测试配置并使用 ng test 进行 运行 测试。我在 karma.conf.js 中的更改:

client: {
   ...
   random: false,
   //or
   seed: '71384' 
   ...
}

此文档展示了如何在 karma.conf 中为 jasmine 测试设置测试顺序。

https://github.com/karma-runner/karma-jasmine

在 karma.conf 中你必须有(参见配置中的 'random: false'):

 module.exports = function(config) {
  config.set({
    client: {
      jasmine: {
        random: false,
      }
    }
  })
}