選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

9 行
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. });