1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-14 04:19:22 +00:00
Files
UXP/testing/mochitest/tests/browser/head.js
T

13 lines
302 B
JavaScript

var headVar = "I'm a var in head file";
function headMethod() {
return true;
};
ok(true, "I'm a test in head file");
registerCleanupFunction(function() {
ok(true, "I'm a cleanup function in head file");
is(this.headVar, "I'm a var in head file", "Head cleanup function scope is correct");
});