web-apps/vendor/requirejs/tests/trailingComma/trailingComma.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -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();
});