DocumentServer/OfficeWeb/vendor/requirejs/tests/trailingComma/trailingComma.js
2015-04-28 17:59:00 +03:00

14 lines
260 B
JavaScript

//Trailing comma is there ON PURPOSE
require(['a',], function(a) {
doh.register(
"trailingComma",
[
function trailingComma(t){
t.is('a', a.name, 'a.name is a');
}
]
);
doh.run();
});