1
0
mirror of https://github.com/lancedikson/bowser synced 2026-03-02 03:40:27 +00:00

Get rid of semver and use old comparison which is more applicable

This commit is contained in:
Denis Demchenko
2018-07-02 23:30:48 +03:00
parent 6030eb9e5d
commit 4ab0d9dfd3
4 changed files with 137 additions and 11 deletions

View File

@@ -58,13 +58,17 @@ test('Skip parsing shouldn\'t parse', (t) => {
});
test('Parser.check should make simple check', (t) => {
t.is(parser.semverCheck({ opera: '>42' }), true);
t.is(parser.check({ opera: '>42' }), true);
});
test('Parser.check should make simple check', (t) => {
t.is(parser.semverCheck({
t.is(parser.check({
macos: {
opera: '>42',
safari: '>11',
},
ios: {
safari: '>10',
},
opera: '>42',
}), true);
});