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 7cad907 commit 68d053cCopy full SHA for 68d053c
test/specs/test.spec.ts
@@ -163,27 +163,6 @@ describe('vue-class-component', () => {
163
expect(app.b).toBe(3)
164
})
165
166
- describe('name', () => {
167
- it('via name option', () => {
168
- @Options({ name: 'test' })
169
- class MyComp extends Vue {
170
- render () {}
171
- }
172
-
173
- const app = createApp(MyComp).mount(root)
174
- expect(app.$options.name).toBe('test')
175
- })
176
177
- it('via class name', () => {
178
179
180
181
182
183
- expect(app.$options.name).toBe('MyComp')
184
185
186
187
it('other options', (done) => {
188
let v: number
189
0 commit comments