15 lines
234 B
JavaScript
15 lines
234 B
JavaScript
'use strict';
|
|
|
|
exports['angularMd5'] = {
|
|
setUp: function(done) {
|
|
// setup here
|
|
done();
|
|
},
|
|
'no args': function(test) {
|
|
test.expect(1);
|
|
// tests here
|
|
test.equal(1, 1, 'pass the test.');
|
|
test.done();
|
|
}
|
|
};
|