Skip to content

Commit

Permalink
chore(release): 2.6.0 > 2.6.1
Browse files Browse the repository at this point in the history
- fix testcase
  • Loading branch information
imjuni committed Aug 12, 2024
1 parent a6a82b7 commit 8b6cf17
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ctix",
"version": "2.6.0",
"version": "2.6.1",
"description": "Automatic create index.ts file",
"scripts": {
"clean": "rimraf ./dist",
Expand Down
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/compilers/__tests__/is.declaration.file.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe('isDeclaration', () => {
const r02 = isDeclaration(tsm.SyntaxKind.ImportDeclaration);

expect(r01).toBeTruthy();
expect(r02).toBeTruthy();
expect(r02).toBeFalsy();
});

it('not declaration', () => {
Expand All @@ -42,7 +42,7 @@ import '@babel/polyfill';

const sourceFile = context.project.createSourceFile(filename, source.trim());
const r01 = isDeclarationFile(sourceFile);
expect(r01).toBeTruthy();
expect(r01).toBeFalsy();
});

it('file have only module-declarations', () => {
Expand Down

0 comments on commit 8b6cf17

Please sign in to comment.