mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 22:29:44 +08:00
17 lines
309 B
JavaScript
17 lines
309 B
JavaScript
describe('SideMenu', function() {
|
|
var menu;
|
|
|
|
beforeEach(function() {
|
|
var d = document.createElement('div');
|
|
menu = new SideMenu({
|
|
el: d,
|
|
width: 270
|
|
});
|
|
});
|
|
|
|
it('Should init', function() {
|
|
expect(menu.width).toEqual(270);
|
|
expect(menu.isEnabled).toEqual(true);
|
|
});
|
|
});
|