aboutsummaryrefslogtreecommitdiff
path: root/node_modules/is-error/test/index.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
commitcc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch)
tree92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/is-error/test/index.js
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/is-error/test/index.js')
-rw-r--r--node_modules/is-error/test/index.js46
1 files changed, 0 insertions, 46 deletions
diff --git a/node_modules/is-error/test/index.js b/node_modules/is-error/test/index.js
deleted file mode 100644
index e20a2f719..000000000
--- a/node_modules/is-error/test/index.js
+++ /dev/null
@@ -1,46 +0,0 @@
-'use strict';
-
-var test = require('tape');
-var vm = require('vm');
-
-var isError = require('../index.js');
-
-test('isError is a function', function t(assert) {
- assert.equal(typeof isError, 'function');
- assert.end();
-});
-
-test('returns true for error', function t(assert) {
- assert.equal(isError(new Error('foo')), true);
- assert.equal(isError(Error('foo')), true);
- assert.end();
-});
-
-test('returns false for non-error', function t(assert) {
- assert.equal(isError(null), false);
- assert.equal(isError(undefined), false);
- assert.equal(isError({message: 'hi'}), false);
- assert.equal(isError(true), false);
- assert.equal(isError(false), false);
- assert.equal(isError(1), false);
- assert.equal(isError('string'), false);
- assert.end();
-});
-
-test('errors that inherit from Error', function t(assert) {
- var error = Object.create(new Error());
- assert.equal(isError(error), true);
- assert.end();
-});
-
-test('errors from other contexts', function t(assert) {
- var error = vm.runInNewContext('new Error()');
- assert.equal(isError(error), true);
- assert.end();
-});
-
-test('errors that inherit from Error in another context', function t(assert) {
- var error = vm.runInNewContext('Object.create(new Error())');
- assert.equal(isError(error), true);
- assert.end();
-});