Skip to content

Instantly share code, notes, and snippets.

@CompuIves
Created February 21, 2018 20:08
Show Gist options
  • Save CompuIves/7f671441e1d10497278e5cd53a5efd35 to your computer and use it in GitHub Desktop.
Save CompuIves/7f671441e1d10497278e5cd53a5efd35 to your computer and use it in GitHub Desktop.
const SANDBOXES = [];
describe('sandboxes', () => {
SANDBOXES.forEach(sandbox => {
const id = sandbox.id || sandbox;
const threshold = sandbox.threshold || 0.01;
it(
`loads the sandbox with id '${id}'`,
async () => {
/* test code */
},
1000 * 120 * 1
);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment