Skip to content

Instantly share code, notes, and snippets.

@ryanblock
Created November 14, 2018 03:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanblock/5acda263adc1a92385284828b4c469f6 to your computer and use it in GitHub Desktop.
Save ryanblock/5acda263adc1a92385284828b4c469f6 to your computer and use it in GitHub Desktop.
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