Guest User

Untitled

a guest
Feb 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. /*global QUnit, window, document*/
  2. (function (QUnit, window, document) {
  3. 'use strict';
  4.  
  5. QUnit.testSkip = function (p_sTestName) {
  6. QUnit.test(p_sTestName + ' (SKIPPED)', 0, function () {
  7. var li = document.getElementById(QUnit.config.current.id);
  8. QUnit.done(function () {
  9. li.style.background = '#FFFF99';
  10. });
  11. });
  12. };
  13.  
  14. window.testSkip = QUnit.testSkip;
  15.  
  16. }(QUnit, window, document));
  17.  
  18. /* EOF */
Add Comment
Please, Sign In to add comment