Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
felipesere committed Oct 23, 2019
1 parent 6b7e86e commit 164a93f
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions test/sane-flags.spec.js
Expand Up @@ -185,10 +185,23 @@ describe('the sane flags', () => {

it('presents the state of all available features', () => {
expect(features.state()).to.have.deep.members([
{ name: 'dynamic_contact_form', enabled: true, description: 'The new form that fills in form contacts from the current account'},
{ name: 'disabled_feature', enabled: false, description: 'The feature we are working on but have disabled'},
{ name: 'enabled_feature', enabled: true, description: 'This is on'},
{ name: 'cool_feature', enabled: false, description: 'The feature we are working on but have disabled'}
{
name: 'dynamic_contact_form',
enabled: true,
description:
'The new form that fills in form contacts from the current account'
},
{
name: 'disabled_feature',
enabled: false,
description: 'The feature we are working on but have disabled'
},
{ name: 'enabled_feature', enabled: true, description: 'This is on' },
{
name: 'cool_feature',
enabled: false,
description: 'The feature we are working on but have disabled'
}
])
})

Expand Down

0 comments on commit 164a93f

Please sign in to comment.