Skip to content

Commit b2a3811

Browse files
committed
Fix tests issues
1 parent 661f5c9 commit b2a3811

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

__tests__/changelog.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import * as fs from 'fs'
44
import {Settings} from '../src/settings'
55
import {Changelog} from '../src/changelog'
66
import {GitCommit} from '../src/git'
7-
import {TEST_DIR} from './common'
7+
import {TEST_DIR} from './common.test.utils'
88

99
describe('Changelog', () => {
1010
afterAll(() => {
File renamed without changes.

__tests__/git.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import * as path from 'path'
55
import * as fs from 'fs'
66
import {Git} from '../src/git'
77
import {Settings} from '../src/settings'
8-
import {TEST_DIR} from './common'
8+
import {TEST_DIR} from './common.test.utils'
99

1010
async function runGit(args: string[], cwd: string) {
1111
const gitPath = await io.which('git', true)

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
"noImplicitAny": false /* Raise error on expressions and declarations with an implied 'any' type. */,
99
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
1010
},
11-
"exclude": ["node_modules", "**/*.test.ts"]
11+
"exclude": ["node_modules", "**/*.test.ts", "**/*.test.utils.ts"]
1212
}

0 commit comments

Comments
 (0)