mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-27 20:24:45 +01:00
11 lines
196 B
JavaScript
11 lines
196 B
JavaScript
'use strict';
|
|
|
|
var systemGlobal = require('../');
|
|
var test = require('tape');
|
|
var runTests = require('./tests');
|
|
|
|
test('as a function', function (t) {
|
|
runTests(systemGlobal(), t);
|
|
|
|
t.end();
|
|
});
|