jasmine-content.js 150 B

1234567
  1. beforeEach(function() {
  2. $('body').append('<div id="jasmine_content"></div>');
  3. });
  4. afterEach(function() {
  5. $('body #jasmine_content').remove();
  6. });