Skip to content

Instantly share code, notes, and snippets.

@khaosdoctor
Created July 12, 2017 02:39
Show Gist options
  • Save khaosdoctor/3d7605c8df87370488f8151631a328c2 to your computer and use it in GitHub Desktop.
Save khaosdoctor/3d7605c8df87370488f8151631a328c2 to your computer and use it in GitHub Desktop.
Ava test description
var assert = require('assert');
describe('Route', function() {
describe('Status test', function() {
it('Should return 200 when both the database and the API are ok',
function() { //Nosso teste }
);
it('Should return 503 when the database or the API are offline',
function() { //Nosso teste }
);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment