mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 07:40:22 +00:00
9 lines
173 B
JavaScript
9 lines
173 B
JavaScript
'use strict';
|
|
|
|
describe('$document', function() {
|
|
|
|
|
|
it("should inject $document", inject(function($document) {
|
|
expect($document).toEqual(jqLite(document));
|
|
}));
|
|
});
|