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