CLI for Oblique Strategies.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

14 строки
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. });