Skip to content

Instantly share code, notes, and snippets.

@mcanas
Last active August 29, 2015 13:57
Show Gist options
  • Save mcanas/9509470 to your computer and use it in GitHub Desktop.
Save mcanas/9509470 to your computer and use it in GitHub Desktop.
JSBin & QUnit Template
/**********************/
// CODE:
/**********************/
function myTestableCode() {
return true;
}
/**********************/
// TESTS:
/**********************/
test("Passing Test", function() {
equal( myTestableCode(), true, "Passed!" );
});
doctype html
html(lang='en')
head
title JSBin + QUnit Template
link(href='http://code.jquery.com/qunit/qunit-git.css', rel='stylesheet')
body
#qunit
#qunit-fixture
script(src='http://code.jquery.com/qunit/qunit-git.js')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment