Skip to content

Commit 14ada45

Browse files
committed
Use todo instead
1 parent 38c6034 commit 14ada45

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/vue-split-panel/tests/collapse.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { SplitPanel } from '../src';
44

55
// There's a tsdown/vitest issue causing false positives here, so we skip these tests for now
66
// => TypeError: Cannot define property split-panel, object is not extensible
7-
describe.skip('collapse', () => {
7+
describe.todo('collapse', () => {
88
it('collapses when collapsed is set to true', () => {
99
const wrapper = mount(SplitPanel, {
1010
props: { collapsed: true },

packages/vue-split-panel/tests/mounting.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { SplitPanel } from '../src';
44

55
// There's a tsdown/vitest issue causing false positives here, so we skip these tests for now
66
// => TypeError: Cannot define property split-panel, object is not extensible
7-
describe.skip('basic mounting and rendering', () => {
7+
describe.todo('basic mounting and rendering', () => {
88
it('mounts without crashing', () => {
99
const wrapper = mount(SplitPanel);
1010
expect(wrapper.exists()).toBe(true);

0 commit comments

Comments
 (0)