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

blah.test.ts 122 B

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