Skip to content

Commit ef9799d

Browse files
bump package version to 0.1.15
1 parent 4bef25a commit ef9799d

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@daostack/client",
3-
"version": "0.1.14",
3+
"version": "0.1.15",
44
"description": "",
55
"keywords": [],
66
"main": "dist/lib/index.js",

test/client.spec.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,9 @@ import { ApolloClient } from 'apollo-client'
22
import gql from 'graphql-tag'
33
import { Observable, Observer } from 'rxjs'
44
import { Arc } from '../src/arc'
5-
import { Logger } from '../src/logger'
65
import { createApolloClient, getContractAddressesFromMigration } from '../src/utils'
76
import { graphqlHttpProvider, graphqlWsProvider, mintSomeReputation, waitUntilTrue } from './utils'
87

9-
Logger.setLevel(Logger.OFF)
10-
118
function getClient() {
129
const apolloClient = createApolloClient({
1310
graphqlHttpProvider,
@@ -16,12 +13,12 @@ function getClient() {
1613
return apolloClient
1714
}
1815

16+
jest.setTimeout(20000)
1917
/**
2018
* Token test
2119
*/
2220
describe('apolloClient', () => {
23-
let client
24-
jest.setTimeout(20000)
21+
let client: any
2522

2623
it('can be instantiated', () => {
2724
client = getClient()
@@ -124,5 +121,4 @@ describe('apolloClient', () => {
124121
// expect(cntr).toEqual(3)
125122
subscription.unsubscribe()
126123
})
127-
128124
})

0 commit comments

Comments
 (0)