mirror of
https://github.com/mmumshad/ansible-playable.git
synced 2025-02-15 04:42:05 +00:00
16 lines
346 B
JavaScript
16 lines
346 B
JavaScript
'use strict';
|
|
|
|
describe('Service: ansi2html', function() {
|
|
// load the service's module
|
|
beforeEach(module('webAppApp.ansi2html'));
|
|
|
|
// instantiate service
|
|
var ansi2html;
|
|
beforeEach(inject(function(_ansi2html_) {
|
|
ansi2html = _ansi2html_;
|
|
}));
|
|
|
|
it('should do something', function() {
|
|
expect(!!ansi2html).to.be.true;
|
|
});
|
|
});
|