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

fixing ES6 Module import for BROWSER_ALIAS_MAP

This commit is contained in:
Marco Starker
2019-04-18 13:46:30 +02:00
parent b55b0bb540
commit 0f20a43f0a
3 changed files with 4 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
import test from 'ava';
import { BROWSER_ALIASES_MAP } from '../../src/constants';
import BROWSER_ALIASES_MAP from '../../src/constants';
test('check duplicate aliases', (t) => {
const aliasesList = Object.keys(BROWSER_ALIASES_MAP).map(value => (BROWSER_ALIASES_MAP[value]));