mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-23 15:12:44 +00:00
12 lines
303 B
JavaScript
12 lines
303 B
JavaScript
describe('mdList directive', function() {
|
|
function setup(attrs) {
|
|
module('material.components.list');
|
|
var el;
|
|
inject(function($compile, $rootScope) {
|
|
el = $compile('<md-list '+(attrs || '')+'></md-list>')($rootScope.$new());
|
|
$rootScope.$apply();
|
|
});
|
|
return el;
|
|
}
|
|
});
|