25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

9 satır
165 B

  1. import { describe, it, expect } from 'vitest';
  2. import add from '../src';
  3. describe('blah', () => {
  4. it('works', () => {
  5. expect(add(1, 1)).toEqual(2);
  6. });
  7. });