我正在尝试使用jasmine-test-rails-reporter api更新测试导轨中的测试用例。
这是我的配置:
let TestRailReporter = require('jasmine-testrail-reporter').default;
let trReporter = new TestRailReporter({
domain: 'https://xxx.testrail.com/',
email: 'xx@xx.com',
password: 'xxx',
projectId: xx,
suiteId: xx
// runId: 30,
});
我的测试规格看起来像:
it('C215 should xxxxxxx', async function()
C215是来自测试导轨的测试用例ID。
但是测试用例不会在具有通过或失败状态的测试轨中得到更新。我在这里想念什么吗?
感谢您的回应。
谢谢