UNPKG

angular-material-npfixed

Version:

The Angular Material project is an implementation of Material Design in Angular.js. This project provides a set of reusable, well-tested, and accessible Material Design UI components. Angular Material is supported internally at Google by the Angular.js, M

11 lines (7 loc) 321 B
describe('mdContent directive', function() { beforeEach(module('material.components.content')); it('should have `._md` class indicator', inject(function($compile, $rootScope) { var element = $compile('<md-content></md-content>')($rootScope.$new()); expect(element.hasClass('_md')).toBe(true); })); });