mirror of
https://github.com/Rushilwiz/spaceout.git
synced 2025-04-21 20:09:50 -04:00
9 lines
169 B
JavaScript
9 lines
169 B
JavaScript
import test from 'tape';
|
|
import isBrowser from '../src/index';
|
|
|
|
|
|
test('isInBrowser', t => {
|
|
t.equal(false, isBrowser, 'works as expected in Node');
|
|
t.end();
|
|
});
|