We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3879b2b commit 5627663Copy full SHA for 5627663
tests/test-app/tests/utils/debounce/js-test.ts
@@ -51,9 +51,9 @@ module('Utils | debounce | js', function (hooks) {
51
52
assert.strictEqual(test.debouncedValue, 'initial', 'Value is as given at first');
53
54
- test.value = 'new'
+ test.value = 'new';
55
56
- assert.notEqual(test.debouncedValue, test.value, 'Value and debounced value have diverged')
+ assert.notEqual(test.debouncedValue, test.value, 'Value and debounced value have diverged');
57
58
await timeout(50);
59
0 commit comments