CLI for Oblique Strategies.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

14 wiersze
334 B

  1. import { describe, expect, it } from 'vitest';
  2. import { read, prefix } from '../text';
  3. describe('text', () => {
  4. it('resolves to a string array', async () => {
  5. const cards = await read('hello|hi|foo');
  6. expect(cards).toHaveLength(3);
  7. });
  8. it('exports a prefix', () => {
  9. expect(prefix).toBeTypeOf('string');
  10. });
  11. });