예제 #1
0
파일: utils.js 프로젝트: Luisangonzalez/psi
 it('should select red for scores 20 or less', function () {
   var expected = chalk.red.toString();
   var score = 20;
   assert.equal(utils.scoreColor(score).toString(), expected);
 });
예제 #2
0
파일: utils.js 프로젝트: addyosmani/psi
 it('should select red for scores 20 or less', () => {
   const expected = chalk.red.toString();
   const score = 20;
   assert.equal(utils.scoreColor(score).toString(), expected);
 });