Skip to content

Commit 195e83d

Browse files
committed
fix: update css class inside tests
1 parent a6770d3 commit 195e83d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/Select.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ describe("input + menu interactions behavior", () => {
3737
it("should display the placeholder when no option is selected", () => {
3838
const wrapper = mount(VueSelect, { props: { modelValue: null, options, placeholder: "Select an option" } });
3939

40-
expect(wrapper.find(".placeholder").text()).toBe("Select an option");
40+
expect(wrapper.find(".input-placeholder").text()).toBe("Select an option");
4141
});
4242

4343
it("should not open the menu when focusing the input", async () => {

0 commit comments

Comments
 (0)