Browse Source

Test function returns a new instance

pull/29/head
Luke Childs 8 years ago
parent
commit
11a32f5914
  1. 6
      test/Function shouldn't return the same instance.js

6
test/Function shouldn't return the same instance.js

@ -0,0 +1,6 @@
import test from 'ava';
import browserEnv from '../src';
test(t => {
t.not(browserEnv(), browserEnv());
});
Loading…
Cancel
Save