diff --git a/test/unit/specs/sync.spec.js b/test/unit/specs/sync.spec.js index 7ccd73992..0f8ea40e3 100644 --- a/test/unit/specs/sync.spec.js +++ b/test/unit/specs/sync.spec.js @@ -15,6 +15,8 @@ const Test = { describe('Sync', () => { it('should not throw when use incorrectly', () => { + sinon.stub(window.console, 'warn'); + createVue({ template: ` @@ -29,6 +31,8 @@ describe('Sync', () => { } }); + expect(window.console.warn.callCount).to.equal(1); + createVue({ template: ` @@ -43,6 +47,8 @@ describe('Sync', () => { } }); + expect(window.console.warn.callCount).to.equal(2); + createVue({ template: ` @@ -57,6 +63,8 @@ describe('Sync', () => { } }); + expect(window.console.warn.callCount).to.equal(3); + createVue({ template: `
@@ -70,6 +78,10 @@ describe('Sync', () => { }; } }); + + expect(window.console.warn.callCount).to.equal(4); + + window.console.warn.restore(); }); it('context variable should change when inner component variable change', (done) => {