You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've written these two failing tests for one-way-number-mask-test.js.
test('It does not input a zero when hitting "."',asyncfunction(assert){awaitrender(hbs`<OneWayNumberMask />`);awaitfillIn('input','.');assert.dom('input').hasValue('');});test('It does not input a zero when hitting "m"',asyncfunction(assert){// This also happens with the letter `k`awaitrender(hbs`<OneWayNumberMask />`);awaitfillIn('input','m');assert.dom('input').hasValue('');});