Skip to content

Commit 0ea459c

Browse files
committed
test: re-skip
1 parent 7832d2b commit 0ea459c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/integration/ux/table.integration.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ describe('table', () => {
3232
expect(output).to.include('ID');
3333
});
3434

35-
it('does not exceed stack depth on very tall, wide tables', () => {
35+
// skip because it's too slow
36+
it.skip('does not exceed stack depth on very tall, wide tables', () => {
3637
const columnsLength = 100;
3738
const row = Object.fromEntries(Array.from({ length: columnsLength }).map((_, i) => [`col${i}`, 'foo']));
3839
const data = Array.from({ length: 150_000 }).fill(row) as Array<Record<string, unknown>>;

0 commit comments

Comments
 (0)