1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 06:47:58 +01:00
Files
pentadactyl-pm/content/test.js

14 lines
319 B
JavaScript
Executable File

var TestCase = mozlab.mozunit.TestCase;
var assert = mozlab.mozunit.assertions;
var tc = new TestCase('testcase description here');
tc.tests = {
'First test is successful': function() {
var vimperator = new Vimperator();
assert.isDefined(vimperator);
assert.isTrue(true);
}
}
tc.run()