Sha256: 0d596968f2f45cb0c5a2455c51bd5a36b80ac5a367a60980f769acbb291597ce
Contents?: true
Size: 365 Bytes
Versions: 18
Compression:
Stored size: 365 Bytes
Contents
require('/jquery.js'); describe('transactions', function() { it("should add stuff in one test...", function() { $('#test').append('<h1 id="added">New Stuff</h1>'); expect($('#test h1#added').length).toEqual(1); }); it("... should have been removed before the next starts", function() { expect($('#test h1#added').length).toEqual(0); }); });
Version data entries
18 entries across 18 versions & 4 rubygems