6 lines
116 B
TypeScript
6 lines
116 B
TypeScript
const { test, expect } = require("bun:test");
|
|
|
|
test.each([[]])("%p", array => {
|
|
expect(array.length).toBe(0);
|
|
});
|