'use strict'; describe('directives', function() { var compile, scope; beforeEach(module('directives')); beforeEach(module(function($compileProvider) { $compileProvider.debugInfoEnabled(false); })); beforeEach(inject(function($rootScope, $compile) { scope = $rootScope.$new(); compile = $compile; })); describe('code', function() { var prettyPrintOne, oldPP; var any = jasmine.any; beforeEach(function() { // Provide stub for pretty print function oldPP = window.prettyPrintOne; prettyPrintOne = window.prettyPrintOne = jasmine.createSpy(); }); afterEach(function() { window.prettyPrintOne = oldPP; }); it('should pretty print innerHTML', function() { compile('var x;')(scope); expect(prettyPrintOne).toHaveBeenCalledWith('var x;', null, false); }); it('should allow language declaration', function() { compile('')(scope); expect(prettyPrintOne).toHaveBeenCalledWith(any(String), 'javascript', false); }); it('supports allow line numbers', function() { compile('')(scope); expect(prettyPrintOne).toHaveBeenCalledWith(any(String), null, true); }); }); });