chore: try failing test

This commit is contained in:
Ayo Ayco 2025-03-15 20:31:34 +01:00
parent 0fc9de7725
commit 708ead451c

View file

@ -11,5 +11,5 @@ test('show box message in-progress', () => {
const arg = spy.mock.calls[0][0] const arg = spy.mock.calls[0][0]
expect(spy).toHaveBeenCalled() expect(spy).toHaveBeenCalled()
expect(arg).toContain('In-progress') expect(arg).not.toContain('In-progress')
}) })