super-productivity/app-src/scripts/inline-markdown/inline-markdown-d.spec.js

21 lines
No EOL
477 B
JavaScript

'use strict';
describe('Directive: inlineMarkdown', function () {
// load the directive's module
beforeEach(module('superProductivity'));
beforeEach(module('templates'));
var element,
scope;
beforeEach(inject(function ($rootScope) {
scope = $rootScope.$new();
}));
it('should do something', inject(function ($compile) {
element = $compile('<inline-markdown></inline-markdown>')(scope);
scope.$digest();
expect(true).toBe(true);
}));
});