diff --git a/tests/helpers.js b/tests/helpers.js index c625289..36be948 100755 --- a/tests/helpers.js +++ b/tests/helpers.js @@ -1,5 +1,5 @@ import { shallowMount } from "@vue/test-utils"; -import VueSelect from "../src/components/Select"; +import VueSelect from "../src/components/Select.vue"; /** * Trigger a submit event on the search diff --git a/tests/unit/Selecting.spec.js b/tests/unit/Selecting.spec.js index 3e33d99..f09242c 100755 --- a/tests/unit/Selecting.spec.js +++ b/tests/unit/Selecting.spec.js @@ -174,18 +174,18 @@ describe("VS - Selecting Values", () => { expect(Select.vm.isOptionSelected({ label: "one" })).toEqual(true); }); - it("can use v-model syntax for a two way binding to a parent component", () => { + it.only("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: `