Luke Childs
9 years ago
1 changed files with 10 additions and 0 deletions
@ -0,0 +1,10 @@ |
|||
import test from 'ava'; |
|||
import browserEnv from '../dist'; |
|||
|
|||
test(t => { |
|||
t.is(typeof navigator, 'undefined'); |
|||
const returnValue = browserEnv(['navigator'], { userAgent: 'first' }); |
|||
t.is(navigator.userAgent, 'first'); |
|||
const secondReturnValue = browserEnv({ userAgent: 'second' }, ['navigator']); |
|||
t.is(navigator.userAgent, 'second'); |
|||
}); |
Loading…
Reference in new issue