Test fixes (#1197)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2022-03-24 16:04:29 +07:00
committed by GitHub
parent 6f7e95e233
commit dd809242b1
23 changed files with 439 additions and 86 deletions
@@ -57,7 +57,7 @@
async function createTask () {
const state = await client.findOne(task.class.State, { space: _space })
if (state === undefined) {
throw new Error('create application: state not found')
throw new Error('create task: state not found')
}
const sequence = await client.findOne(task.class.Sequence, { attachedTo: task.class.Issue })