Skip to content

Commit 0a9086d

Browse files
committed
fix failing test
1 parent 5a9e930 commit 0a9086d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/specs/instance.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ import * as VueTypedUI from '../../dist/vue-typed-ui'
44
import { expect } from 'chai'
55

66

7-
describe('vue-typed-ui instance', () => {
7+
describe('vue-typed-ui root instance', () => {
88

99
Vue.use(VueTypedUI)
1010

11-
it('should have $ui instance with $settings property', () => {
11+
it('should have $UI instance with $settings property', () => {
1212

1313
@Component() class A extends Vue { }
1414

1515
var vm = (new A()).$mount()
16-
expect(vm).to.have.property('$ui').to.have.property('$settings')
16+
expect(vm).to.have.property('$UI').to.have.property('$settings')
1717

1818
})
1919

0 commit comments

Comments
 (0)