GASUnit icon indicating copy to clipboard operation
GASUnit copied to clipboard

Add TDD style

Open munierujp opened this issue 7 years ago • 0 comments
trafficstars

like this:

suite('Array', function() {
  setup(function() {
    // ...
  });

  suite('#indexOf()', function() {
    test('should return -1 when not present', function() {
      assert.equal(-1, [1,2,3].indexOf(4));
    });
  });
});

munierujp avatar Aug 31 '18 16:08 munierujp