Skip to content

Commit

Permalink
fix: fix lint issue
Browse files Browse the repository at this point in the history
Signed-off-by: seven <[email protected]>
  • Loading branch information
Blankll committed Jan 21, 2024
1 parent 5934c78 commit 66f0e88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const hello = () => 'hello'
export const hello = () => 'hello';
4 changes: 2 additions & 2 deletions tests/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
describe('unit test for index', function() {
it('should pass test', function() {
describe('unit test for index', function () {
it('should pass test', function () {
expect(true).toBe(true);
});
});

0 comments on commit 66f0e88

Please sign in to comment.