Skip to content

Commit

Permalink
update targets parser test due to the update of caniuse-lite transi…
Browse files Browse the repository at this point in the history
…tive dependency
  • Loading branch information
zloirock committed Oct 3, 2021
1 parent 33f8141 commit 57a189e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/targets-parser.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const targetsParser = require('core-js-compat/targets-parser');
deepStrictEqual(targetsParser('ie 11, chrome 56, ios 12.2'), new Map([
['chrome', '56'],
['ie', '11'],
['ios', '12.2-12.4'],
['ios', '12.2-12.5'],
]));

// targets object
Expand All @@ -23,7 +23,7 @@ deepStrictEqual(targetsParser({
deepStrictEqual(targetsParser({ browsers: 'ie 11, chrome 56, ios_saf 12.2' }), new Map([
['chrome', '56'],
['ie', '11'],
['ios', '12.2-12.4'],
['ios', '12.2-12.5'],
]));

// targets.esmodules
Expand Down

0 comments on commit 57a189e

Please sign in to comment.