Skip to content

Commit

Permalink
Merge pull request #1 from EOSIO/test_pluralization_fix
Browse files Browse the repository at this point in the history
Fix a pluralization typo in some of the test descriptions
  • Loading branch information
wpwood committed Mar 18, 2019
2 parents 857f894 + 5442ea4 commit 9183e32
Show file tree
Hide file tree
Showing 4 changed files with 1,105 additions and 1,429 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
"devDependencies": {
"@blockone/tslint-config-blockone": "^1.0.0",
"@types/node": "^10.12.12",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"jest": "^24.5.0",
"ts-jest": "^24.0.0",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"typescript": "^3.2.1"
Expand Down
6 changes: 3 additions & 3 deletions src/SignatureProviderInterface.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ describe('SignatureProviderInterface', () => {
})

describe('if cached keys are empty', () => {
it('does not returns cached keys', async () => {
it('does not return cached keys', async () => {
mockGetCachedKeys.mockReturnValue([])
signatureProviderInterface = createSignatureProvider()
const result = await signatureProviderInterface.getAvailableKeys()
Expand All @@ -64,7 +64,7 @@ describe('SignatureProviderInterface', () => {
})

describe('if cached keys is null', () => {
it('does not returns cached keys', async () => {
it('does not return cached keys', async () => {
mockGetCachedKeys.mockReturnValue(null)
signatureProviderInterface = createSignatureProvider()
const result = await signatureProviderInterface.getAvailableKeys()
Expand All @@ -73,7 +73,7 @@ describe('SignatureProviderInterface', () => {
})

describe('if cached keys is undefined', () => {
it('does not returns cached keys', async () => {
it('does not return cached keys', async () => {
mockGetCachedKeys.mockReturnValue(undefined)
signatureProviderInterface = createSignatureProvider()
const result = await signatureProviderInterface.getAvailableKeys()
Expand Down
10 changes: 6 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"outDir": "./dist",
"moduleResolution": "node",
"typeRoots": [
"node_modules/@types",
"node_modules/@types",
"@types"
],
"declaration": true,
Expand All @@ -18,8 +18,10 @@
"pretty": true,
"sourceMap": true
},
"exlude": [
"node_modules",
"@types"
"include": [
"src/*"
],
"exclude": [
"src/**/*.test.ts"
]
}

0 comments on commit 9183e32

Please sign in to comment.