Skip to content

Instantly share code, notes, and snippets.

@davidecaruso
Created March 26, 2020 17:31
Show Gist options
  • Save davidecaruso/ee6a855327949f83ab1d2d52ad933583 to your computer and use it in GitHub Desktop.
Save davidecaruso/ee6a855327949f83ab1d2d52ad933583 to your computer and use it in GitHub Desktop.
MongoDB Integration Tests
import chai from 'chai';
import createDatabase from '~/tests/createDatabase';
chai.should();
createDatabase({before, afterEach, after}, () => {
describe('My Awesome Feature', () => {
it('Should be the best in the world', () => {
// tests
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment