Created
November 14, 2018 03:16
-
-
Save ryanblock/5acda263adc1a92385284828b4c469f6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let arc = require('@architect/architect') | |
let data = require('@architect/data') | |
let tiny = require('tiny-json-http') | |
let test = require('tape') | |
let end // save a ref | |
test('start sandbox', async t=> { | |
t.plan(1) | |
end = await arc.sandbox.start() | |
t.ok('started sandbox') | |
}) | |
test('shut down the sandbox', t=> { | |
t.plan(1) | |
end() | |
t.ok(true, 'shutdown successfully') | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment