Skip to content

Commit f9a2ddd

Browse files
committed
Fixed logical error in declarationMiner.spec.ts
1 parent b5dd996 commit f9a2ddd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/sdk-codegen-scripts/src/declarationMiner.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ describe('Declaration miner', () => {
5050

5151
const sourcePath = settings.base_url
5252
const isConfigured = () => settings.base_url
53-
const testIfConfigured = isConfigured ? it : it.skip
53+
const testIfConfigured = isConfigured() ? it : it.skip
5454

5555
testIfConfigured('should mine files matching the probe settings', () => {
5656
const miner = new DeclarationMiner(

0 commit comments

Comments
 (0)