Skip to content

Commit 70c9b74

Browse files
committed
Merge branch 'master' of github.com:facing-dev/vue-facing-decorator
2 parents 47110ad + 48d118d commit 70c9b74

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

test/feature/hooks.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Comp extends Base {
1515

1616
}
1717
const CompContext = toNative(Comp) as any
18-
console.log('hhh',CompContext)
18+
1919
describe('feature hooks',
2020
() => {
2121
it('default', () => {
@@ -29,4 +29,4 @@ describe('feature hooks',
2929
})
3030
}
3131
)
32-
export default {}
32+
export default {}

test/option/accessor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { expect } from 'chai';
44
import 'mocha';
55
import { Component, Base, Vanilla, toNative } from '../../dist'
66

7-
@Component
7+
@Component({template: '<div/>'})
88
class Comp extends Base {
99

1010
@Vanilla

test/option/data.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import 'mocha';
44
import { Component, Base, Prop, toNative } from '../../dist'
55
import { mount } from '@vue/test-utils'
66

7-
@Component
7+
@Component({template: '<div/>'})
88
class Comp extends Base {
99

1010
data = 'data value'
@@ -30,4 +30,4 @@ describe('option data',
3030
})
3131
}
3232
)
33-
export default {}
33+
export default {}

0 commit comments

Comments
 (0)