CLI for Oblique Strategies.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

14 líneas
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. });