mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 11:07:58 +01:00
14 lines
319 B
JavaScript
Executable File
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()
|