index.js 307 B

1234567891011
  1. import test from 'tape';
  2. import { isRemote } from 'src/common';
  3. test('isRemote', t => {
  4. t.notOk(isRemote());
  5. t.notOk(isRemote('file:///tmp/file'));
  6. t.notOk(isRemote('data:text/plain,hello,world'));
  7. t.ok(isRemote('http://www.google.com'));
  8. t.ok(isRemote('https://www.google.com'));
  9. t.end();
  10. });