Skip to content

Commit ad634d1

Browse files
committed
test: try slow integration test
1 parent 744666f commit ad634d1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/integration/ux/table.integration.ts

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

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

0 commit comments

Comments
 (0)