Skip to content

Commit

Permalink
Lint __tests__/helpers/default-config.spec.js
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbayerlein committed Nov 6, 2016
1 parent 0627bb3 commit 906cc3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions __tests__/helpers/default-config.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ const defaultConfig = require('../../src/helpers/default-config');
describe('helpers', () => {
describe('default-config', () => {
describe('when default config', () => {
it(`then title === hapi.js Status`, () => {
it('then title === hapi.js Status', () => {
expect('hapi.js Status').toEqual(defaultConfig.title);
});

it(`then path === /status`, () => {
it('then path === /status', () => {
expect('/status').toEqual(defaultConfig.path);
});

it(`then spans === array`, () => {
it('then spans === array', () => {
const spans = [
{ interval: 1, retention: 60 },
{ interval: 5, retention: 60 },
Expand Down

0 comments on commit 906cc3c

Please sign in to comment.