2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00

remove .only

This commit is contained in:
Jeff
2019-02-10 17:35:30 -08:00
parent 5bb92d8963
commit f83d0db077
+1 -1
View File
@@ -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: `<div><v-select :options="options" v-model="value" /></div>`,