mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-19 09:50:33 +03:00
remove .only
This commit is contained in:
@@ -174,7 +174,7 @@ describe("VS - Selecting Values", () => {
|
|||||||
expect(Select.vm.isOptionSelected({ label: "one" })).toEqual(true);
|
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({
|
const Parent = mount({
|
||||||
data: () => ({ value: "foo", options: ["foo", "bar", "baz"] }),
|
data: () => ({ value: "foo", options: ["foo", "bar", "baz"] }),
|
||||||
template: `<div><v-select :options="options" v-model="value" /></div>`,
|
template: `<div><v-select :options="options" v-model="value" /></div>`,
|
||||||
|
|||||||
Reference in New Issue
Block a user