mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-23 18:34:45 +01:00
12 lines
213 B
JavaScript
12 lines
213 B
JavaScript
|
'use strict';
|
||
|
|
||
|
var implementation = require('../implementation');
|
||
|
var test = require('tape');
|
||
|
var runTests = require('./tests');
|
||
|
|
||
|
test('implementation', function (t) {
|
||
|
runTests(implementation, t);
|
||
|
|
||
|
t.end();
|
||
|
});
|