mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
* start this * commit * mark all failing tests as todo * fasdfad * bundler tests * tests * adjust failing tests to todo * comment out some more tests * png as test
15 lines
304 B
JavaScript
15 lines
304 B
JavaScript
// This file will segfault the test runner with BUN_GARBAGE_COLLECTOR_LEVEL=2
|
|
import { expect, it, describe } from "bun:test";
|
|
|
|
it("TEST 1", () => {});
|
|
|
|
describe("DESC 1", () => {});
|
|
|
|
it.todo("TEST 2", () => {
|
|
expect(1).toBe(2);
|
|
});
|
|
|
|
it.todo("TEST 3", () => {
|
|
expect(1).toBe(2); // SEGFAULT HERE
|
|
});
|