You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lancedikson_bowser/test/unit/parser.js

18 lines
434 B

import test from 'ava';
import Parser from '../../src/parser';
const UA = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36 OPR/43.0.2442.1165';
const parser = new Parser(UA);
test('constructor', t => {
t.truthy(parser instanceof Parser);
});
test('getUA', t => {
t.is(parser.getUA(), UA);
});
test('test', t => {
t.truthy(parser.test(/Chrome/i));
});