Merge pull request #11961 from colemanw/CRM-21843
[civicrm-core.git] / tests / qunit / example / test.js
1 module('group a');
2
3 test("a basic test example", function() {
4 var value = "hello";
5 equal(value, "hello", "We expect value to be hello");
6 });
7
8 test("another basic test example", function() {
9 var value = "hello";
10 equal(value, "hello", "We expect value to be hello");
11 });