We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a9e930 commit 0a9086dCopy full SHA for 0a9086d
test/specs/instance.ts
@@ -4,16 +4,16 @@ import * as VueTypedUI from '../../dist/vue-typed-ui'
4
import { expect } from 'chai'
5
6
7
-describe('vue-typed-ui instance', () => {
+describe('vue-typed-ui root instance', () => {
8
9
Vue.use(VueTypedUI)
10
11
- it('should have $ui instance with $settings property', () => {
+ it('should have $UI instance with $settings property', () => {
12
13
@Component() class A extends Vue { }
14
15
var vm = (new A()).$mount()
16
- expect(vm).to.have.property('$ui').to.have.property('$settings')
+ expect(vm).to.have.property('$UI').to.have.property('$settings')
17
18
})
19
0 commit comments