Skip to content

Commit

Permalink
fix(test): add a test case to fix unit test error
Browse files Browse the repository at this point in the history
  • Loading branch information
haozhigang committed Oct 5, 2022
1 parent b49196c commit 8c8b1d8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion test/index.test.ts
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
describe('test index ', () => {});
import Printer from '../src/index';
describe('test index ', () => {
it('echo', () => {
const printer = new Printer();
expect(printer).toHaveProperty('connect');
});
});

0 comments on commit 8c8b1d8

Please sign in to comment.