Exemplo n.º 1
0
    it('should return false when a variable is not defined', () => {
      var toCheck;

      expect(isDefined(toCheck)).toBeFalsy();
    });
Exemplo n.º 2
0
    it('should return true when a variable is defined', () => {
      var toCheck = [];

      expect(isDefined(toCheck)).toBeTruthy();
    });