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('');});
The text was updated successfully, but these errors were encountered:
Maybe the reason is the "shortcut" option. If you type "m", it's replaced by "000000". I cannot turn it off passing @options={{hash shortcuts=null}} though.
I've written these two failing tests for
one-way-number-mask-test.js
.The text was updated successfully, but these errors were encountered: