Skip to content

Commit 59ee8dc

Browse files
committed
test: remove obsolete test
1 parent 7232a89 commit 59ee8dc

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

packages/vue-sdk/test/usage.test.ts

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -113,25 +113,4 @@ describe("ReflagBootstrappedProvider", () => {
113113
expect(wrapper.findComponent(Child).vm.client).toBeDefined();
114114
expect(wrapper.findComponent(Child).vm.flag.isEnabled.value).toBe(true);
115115
});
116-
117-
test("handles missing flags gracefully", async () => {
118-
const Child = defineComponent({
119-
setup() {
120-
const client = useClient();
121-
return { client };
122-
},
123-
template: "<div></div>",
124-
});
125-
126-
const wrapper = mount(ReflagBootstrappedProvider, {
127-
props: {
128-
publishableKey: "key",
129-
// No flags provided
130-
},
131-
slots: { default: () => h(Child) },
132-
});
133-
134-
await nextTick();
135-
expect(wrapper.findComponent(Child).vm.client).toBeUndefined();
136-
});
137116
});

0 commit comments

Comments
 (0)