mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-01-12 22:45:52 +08:00
10 lines
173 B
JavaScript
10 lines
173 B
JavaScript
'use strict';
|
|
|
|
describe('$document', function() {
|
|
|
|
|
|
it("should inject $document", inject(function($document) {
|
|
expect($document).toEqual(jqLite(document));
|
|
}));
|
|
});
|