Created
February 21, 2018 20:08
-
-
Save CompuIves/7f671441e1d10497278e5cd53a5efd35 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
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