Skip to content

Commit 4c60cf5

Browse files
committed
style: fix few stylings issue
1 parent d65d142 commit 4c60cf5

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/module/module-collection.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ export default class ModuleCollection {
6060

6161
return parent.hasChild(key)
6262
}
63-
6463
}
6564

6665
function update (path, targetModule, newModule) {

test/unit/modules.spec.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,11 @@ describe('Modules', () => {
8080
store.commit('a/foo')
8181
expect(mutationSpy).toHaveBeenCalled()
8282
})
83+
8384
it('dynamic module existance test', () => {
84-
const store = new Vuex.Store({
85-
})
85+
const store = new Vuex.Store({})
8686

87-
store.registerModule('bonjour', {
88-
})
87+
store.registerModule('bonjour', {})
8988

9089
expect(store.hasModule('bonjour')).toBe(true)
9190
store.unregisterModule('bonjour')

0 commit comments

Comments
 (0)