Skip to content

Commit 24fa2b2

Browse files
committed
Fix wrong assertions after core fix
1 parent 9e42c9c commit 24fa2b2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/signals.test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ describe('Signals', () => {
123123
);
124124

125125
await timeout(TIMEOUT);
126-
await expectByPolling(() => getText(countValue), 'count: 1');
126+
await expectByPolling(() => getText(countValue), 'count: 0');
127127

128128
await increment.click();
129129
await increment.click();
@@ -135,6 +135,7 @@ describe('Signals', () => {
135135
content.replace('count:', 'Count:')
136136
);
137137
await timeout(TIMEOUT);
138+
await expectByPolling(() => getText(countValue), 'Count: 0');
138139

139140
await increment.click();
140141
await expectByPolling(() => getText(countValue), 'Count: 1');

0 commit comments

Comments
 (0)