Skip to content

Commit d78b135

Browse files
committed
test: use deepStrictEqual
1 parent 6b42d22 commit d78b135

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/e2e/task.spec.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe('Run task', () =>
2626
await sleep(100);
2727
const result = await getTask(browser.popup, key);
2828
assert.strictEqual(result.lastRun.status, 'done');
29-
assert.strictEqual(result.lastRun.result.value, value);
29+
assert.deepStrictEqual(result.lastRun.result, { value });
3030
} finally {
3131
await remove();
3232
}

0 commit comments

Comments
 (0)