Skip to content

Commit

Permalink
Fix accidental skip of nearly all tests (whoops)
Browse files Browse the repository at this point in the history
This was so stupid from me.
  • Loading branch information
SpaceK33z committed Feb 25, 2018
1 parent 6e1d886 commit 9934724
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/cli.test.js
Expand Up @@ -16,7 +16,7 @@ describe('CLI Dependencies', () => {
});

describe('CLI', () => {
it.only('--progress', (done) => {
it('--progress', (done) => {
runDevServer('--progress')
.then((output) => {
assert(output.code === 0);
Expand Down

1 comment on commit 9934724

@mikegreiling
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

At @GitLab we configured our linter to fail in CI whenever we left one of these in 😅

Please sign in to comment.