Skip to content

Commit

Permalink
Testing for main command
Browse files Browse the repository at this point in the history
  • Loading branch information
henryruhs committed Jan 11, 2023
1 parent cd64c29 commit 276144e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/cli.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ describe('cli', () =>
expect(error).to.be.null;
expect(fs.readdirSync('tests/__provider__0')).to.be.eql([ '01', '02', '03', '04' ]);
expect(fs.readdirSync('tests/__provider__1')).to.be.eql([ '04' ]);
fs.rmSync('tests/__provider__0', { recursive: true });
fs.rmSync('tests/__provider__1', { recursive: true });
fs.rmSync('tests/__provider__0', { recursive: true, force: true });
fs.rmSync('tests/__provider__1', { recursive: true, force: true });
done();
});
});
Expand Down

0 comments on commit 276144e

Please sign in to comment.