summaryrefslogtreecommitdiff
path: root/node_modules/globalthis/test/index.js
blob: dac0a10a61df7bf1a640fb61c9e5b75a42f57a75 (plain)
1
2
3
4
5
6
7
8
9
10
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();
});