describe('Simple test', () => {
    it('should pass', () => {
      expect(1 + 1).toBe(2);
    });
  }); 