Files
Yajbir Singh f1b860b25c
Some checks failed
check / markdownlint (push) Has been cancelled
check / spellchecker (push) Has been cancelled
updated
2025-12-11 19:03:17 +05:30

21 lines
604 B
JavaScript

require({
baseUrl: requirejs.isBrowser ? "./" : "./plugins/"
}, ['require', 'earth', 'prime/earth'],
function (require, earth, primeEarth) {
doh.register(
"pluginsSync",
[
function pluginsSync(t){
t.is("a", earth.getA().name);
t.is("c", earth.getC().name);
t.is("b", earth.getB().name);
t.is("aPrime", primeEarth.getA().name);
t.is("cPrime", primeEarth.getC().name);
t.is("bPrime", primeEarth.getB().name);
}
]
);
doh.run();
});