fix: 执行测试用例关联的测试生成的报告触发方式为空

This commit is contained in:
shiziyuan9527 2020-07-20 22:37:45 +08:00
parent 777027da3b
commit 29b1aabe0b
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@
} }
}, },
runTest() { runTest() {
this.result = this.$post(this.runPath, {id: this.test.id}, (response) => { this.result = this.$post(this.runPath, {id: this.test.id, triggerMode: 'MANUAL'}, (response) => {
this.$success(this.$t('load_test.is_running')); this.$success(this.$t('load_test.is_running'));
this.$emit('runTest', response.data); this.$emit('runTest', response.data);
}); });