7 lines
149 B
TypeScript
7 lines
149 B
TypeScript
import { expect, test } from 'bun:test';
|
|
import { PAIRS } from './types';
|
|
|
|
test('vier Pairs definiert', () => {
|
|
expect(PAIRS).toHaveLength(4);
|
|
});
|