12 lines
197 B
JavaScript
12 lines
197 B
JavaScript
define([], function() {
|
|
doh.register(
|
|
'testBaseUrl',
|
|
[
|
|
function testBaseUrl(t) {
|
|
t.is(true, true);
|
|
}
|
|
]
|
|
);
|
|
doh.run();
|
|
});
|