From f83d0db077b5b15767cc82d26157aa652aa2cb24 Mon Sep 17 00:00:00 2001 From: Jeff Date: Sun, 10 Feb 2019 17:35:30 -0800 Subject: [PATCH] remove .only --- tests/unit/Selecting.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/Selecting.spec.js b/tests/unit/Selecting.spec.js index f09242c..3834dbe 100755 --- a/tests/unit/Selecting.spec.js +++ b/tests/unit/Selecting.spec.js @@ -174,7 +174,7 @@ describe("VS - Selecting Values", () => { expect(Select.vm.isOptionSelected({ label: "one" })).toEqual(true); }); - it.only("can use v-model syntax for a two way binding to a parent component", () => { + it("can use v-model syntax for a two way binding to a parent component", () => { const Parent = mount({ data: () => ({ value: "foo", options: ["foo", "bar", "baz"] }), template: `
`,