From 158f2740d320af17716c90db166e915478018c28 Mon Sep 17 00:00:00 2001 From: Austin Story Date: Sun, 5 Nov 2017 13:57:13 -0600 Subject: [PATCH] Remove debugger from setComputed spec --- test/unit/specs/mount/Wrapper/setComputed.spec.js | 1 - 1 file changed, 1 deletion(-) diff --git a/test/unit/specs/mount/Wrapper/setComputed.spec.js b/test/unit/specs/mount/Wrapper/setComputed.spec.js index 9c6bcd5cf..729aba584 100644 --- a/test/unit/specs/mount/Wrapper/setComputed.spec.js +++ b/test/unit/specs/mount/Wrapper/setComputed.spec.js @@ -6,7 +6,6 @@ describe('setComputed', () => { it('sets component computed props and updates when called on Vue instance', () => { const wrapper = mount(ComponentWithComputed) expect(wrapper.text()).to.contain('message') - debugger wrapper.setComputed({ reversedMessage: 'custom' }) expect(wrapper.text()).to.contain('custom') })