summaryrefslogtreecommitdiff
path: root/together/node_modules/side-channel/test
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2023-02-23 19:34:56 +0100
committerMinteck <contact@minteck.org>2023-02-23 19:34:56 +0100
commit3d1cd02f27518f1a04374c7c8320cd5d82ede6e9 (patch)
tree75be5fba4368472fb11c8015aee026b2b9a71888 /together/node_modules/side-channel/test
parent8cc1f13c17fa2fb5a4410542d39e650e02945634 (diff)
downloadpluralconnect-3d1cd02f27518f1a04374c7c8320cd5d82ede6e9.tar.gz
pluralconnect-3d1cd02f27518f1a04374c7c8320cd5d82ede6e9.tar.bz2
pluralconnect-3d1cd02f27518f1a04374c7c8320cd5d82ede6e9.zip
Updated 40 files, added 37 files, deleted 1103 files and renamed 3905 files (automated)
Diffstat (limited to 'together/node_modules/side-channel/test')
-rw-r--r--together/node_modules/side-channel/test/index.js78
1 files changed, 0 insertions, 78 deletions
diff --git a/together/node_modules/side-channel/test/index.js b/together/node_modules/side-channel/test/index.js
deleted file mode 100644
index 3b92ef7..0000000
--- a/together/node_modules/side-channel/test/index.js
+++ /dev/null
@@ -1,78 +0,0 @@
-'use strict';
-
-var test = require('tape');
-
-var getSideChannel = require('../');
-
-test('export', function (t) {
- t.equal(typeof getSideChannel, 'function', 'is a function');
- t.equal(getSideChannel.length, 0, 'takes no arguments');
-
- var channel = getSideChannel();
- t.ok(channel, 'is truthy');
- t.equal(typeof channel, 'object', 'is an object');
-
- t.end();
-});
-
-test('assert', function (t) {
- var channel = getSideChannel();
- t['throws'](
- function () { channel.assert({}); },
- TypeError,
- 'nonexistent value throws'
- );
-
- var o = {};
- channel.set(o, 'data');
- t.doesNotThrow(function () { channel.assert(o); }, 'existent value noops');
-
- t.end();
-});
-
-test('has', function (t) {
- var channel = getSideChannel();
- var o = [];
-
- t.equal(channel.has(o), false, 'nonexistent value yields false');
-
- channel.set(o, 'foo');
- t.equal(channel.has(o), true, 'existent value yields true');
-
- t.end();
-});
-
-test('get', function (t) {
- var channel = getSideChannel();
- var o = {};
- t.equal(channel.get(o), undefined, 'nonexistent value yields undefined');
-
- var data = {};
- channel.set(o, data);
- t.equal(channel.get(o), data, '"get" yields data set by "set"');
-
- t.end();
-});
-
-test('set', function (t) {
- var channel = getSideChannel();
- var o = function () {};
- t.equal(channel.get(o), undefined, 'value not set');
-
- channel.set(o, 42);
- t.equal(channel.get(o), 42, 'value was set');
-
- channel.set(o, Infinity);
- t.equal(channel.get(o), Infinity, 'value was set again');
-
- var o2 = {};
- channel.set(o2, 17);
- t.equal(channel.get(o), Infinity, 'o is not modified');
- t.equal(channel.get(o2), 17, 'o2 is set');
-
- channel.set(o, 14);
- t.equal(channel.get(o), 14, 'o is modified');
- t.equal(channel.get(o2), 17, 'o2 is not modified');
-
- t.end();
-});