11 lines
196 B
JavaScript
11 lines
196 B
JavaScript
define([], function() {
|
|
doh.register(
|
|
"testBaseUrl",
|
|
[
|
|
function testBaseUrl(t){
|
|
t.is(true, true);
|
|
}
|
|
]
|
|
);
|
|
doh.run();
|
|
}); |