Guest User

Untitled

a guest
Jan 22nd, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. import { isPrime } from './util';
  2.  
  3. describe('Util test suite', () => {
  4. it('should check prime number correctly', () => {
  5. const result = isPrime(2);
  6. expect(result).toBeTruthy();
  7. });
  8. });
Add Comment
Please, Sign In to add comment