Created
July 12, 2017 02:39
-
-
Save khaosdoctor/3d7605c8df87370488f8151631a328c2 to your computer and use it in GitHub Desktop.
Ava test description
This file contains hidden or 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
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