Skip to content

Commit f9ce6a9

Browse files
committed
Chrome changed it's behaviour
1 parent 1a1c340 commit f9ce6a9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/protractor/specs/validation-messages.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ describe('Schema Form validation messages', function() {
4444
'3': '3 is less than the allowed minimum of 6',
4545
'66': '66 is greater than the allowed maximum of 50',
4646
'11': 'Value is not a multiple of 3',
47-
'aaa': 'Value is not a valid number'
47+
// Chrome no longer lets you input anything but numbers in a type="number" input.
48+
'aaa': 'Required' //'Value is not a valid number'
4849
};
4950

5051
Object.keys(integerTests).forEach(function(value) {

0 commit comments

Comments
 (0)