Skip to content

Commit

Permalink
chore: fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
moritzkirstein committed Mar 15, 2024
1 parent 92a7696 commit 7a56152
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"test:mocha": "npm run mocha -- test/**/*.test.ts",
"test:mocha:unit": "npm run mocha -- test/unit/**/*.test.ts",
"test:mocha:integration": "npm run mocha -- test/integration/**/*.test.ts",
"typecheck": "tsc --noEmit"
"typecheck": "tsc --noEmit && cd test && tsc --noEmit"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
Expand Down
1 change: 1 addition & 0 deletions test/integration/edit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import {
import { MUMBAI_NODE_URI, getSigner } from '../fixtures/Ethers'
import { Aquarius, Config, DDO } from '@oceanprotocol/lib'
import { getTestConfig } from '../fixtures/Config'
import { CredentialListTypes, LifecycleStates } from '../../src/@types'

const nodeUri = MUMBAI_NODE_URI

Expand Down
1 change: 1 addition & 0 deletions test/integration/publish.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import {
} from '../fixtures/AssetConfig'
import { MUMBAI_NODE_URI, getSigner } from '../fixtures/Ethers'
import { ConsumerParameter } from '@oceanprotocol/lib'
import { CredentialListTypes } from '../../src/@types'

const nodeUri = MUMBAI_NODE_URI

Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
// This configuration is used for local development and type checking.
"extends": "./tsconfig.base.json",
"include": ["src", "test"],
"include": ["src"],
"exclude": []
}

0 comments on commit 7a56152

Please sign in to comment.