summaryrefslogtreecommitdiff
path: root/node_modules/globalthis/test/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/globalthis/test/index.js')
-rw-r--r--node_modules/globalthis/test/index.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/node_modules/globalthis/test/index.js b/node_modules/globalthis/test/index.js
new file mode 100644
index 0000000..dac0a10
--- /dev/null
+++ b/node_modules/globalthis/test/index.js
@@ -0,0 +1,11 @@
+'use strict';
+
+var systemGlobal = require('../');
+var test = require('tape');
+var runTests = require('./tests');
+
+test('as a function', function (t) {
+ runTests(systemGlobal(), t);
+
+ t.end();
+});