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