mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00: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();
|
||
|
});
|