Migrate all jasmine specs to Qunit. Removed Jasmine.

This commit is contained in:
Robin Ward
2013-06-19 15:06:23 -04:00
parent e263bb3c0a
commit 8c4aac7f94
24 changed files with 401 additions and 659 deletions

View File

@ -13,6 +13,8 @@ module("Header", {
test("/", function() {
visit("/").then(function() {
expect(2);
ok(exists("header"), "The header was rendered");
ok(exists("#site-logo"), "The logo was shown");
});

View File

@ -13,6 +13,8 @@ module("List Topics", {
test("/", function() {
visit("/").then(function() {
expect(2);
ok(exists("#topic-list"), "The list of topics was rendered");
ok(count('#topic-list .topic-list-item') > 0, "has topics");
});