Skip to content

Commit

Permalink
chore: add dummy tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabh3112 committed Aug 13, 2020
1 parent 5ed3f0b commit c18d6eb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/serve/basic/serve-basic.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ describe('basic serve usage', () => {

// TODO fix me on windows
if (isWindows) {
it('TODO: Fix on windows', () => {
expect(true).toBe(true);
});
return;
}

Expand Down
3 changes: 3 additions & 0 deletions test/serve/with-custom-port/serve-custom-config.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ describe('serve with devServer in config', () => {

// TODO fix me on windows
if (isWindows) {
it('TODO: Fix on windows', () => {
expect(true).toBe(true);
});
return;
}

Expand Down

0 comments on commit c18d6eb

Please sign in to comment.