Files
stf-DeviceFarmer/res/app/components/stf/common-ui/include-cached/include-cached-spec.js
Gunther Brunner 692582ce3d Finally fixed disappearing headers from dynamic columns.
Bind-once optimizations.
2014-06-23 14:32:27 +09:00

23 lines
564 B
JavaScript

describe('includeCached', function () {
beforeEach(module('stf.include-cached'));
var scope, compile;
beforeEach(inject(function ($rootScope, $compile) {
scope = $rootScope.$new();
compile = $compile;
}));
it('should ...', function () {
/*
To test your directive, you need to create some html that would use your directive,
send that through compile() then compare the results.
var element = compile('<div include-cached name="name">hi</div>')(scope);
expect(element.text()).toBe('hello, world');
*/
});
});