Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
markerikson committed Apr 2, 2021
1 parent 0d7d94d commit fb5abcc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.d.ts
Expand Up @@ -224,7 +224,7 @@ export interface Unsubscribe {

declare global {
interface SymbolConstructor {
readonly observable: symbol;
readonly observable: symbol
}
}

Expand Down
4 changes: 2 additions & 2 deletions test/createStore.spec.js
Expand Up @@ -19,8 +19,8 @@ describe('createStore', () => {

// Since switching to internal Symbol.observable impl, it will show up as a key in node env
// So we filter it out
const methods = Object.keys(store).filter(key => key !== $$observable)
const methods = Object.keys(store).filter((key) => key !== $$observable)

expect(methods.length).toBe(4)
expect(methods).toContain('subscribe')
expect(methods).toContain('dispatch')
Expand Down

0 comments on commit fb5abcc

Please sign in to comment.