/** * Test the side menu directive. For more test coverage of the side menu, * see the core Ionic sideMenu controller tests. */ describe('Ionic Angular Slide Box', function() { var el; beforeEach(module('ionic.ui.slideBox')); beforeEach(inject(function($compile, $rootScope) { el = $compile('\ \
\

BLUE {{slideBox.slideIndex}}

\
\
\ \
\

YELLOW {{slideBox.slideIndex}}

\
\
\ \

PINK {{slideBox.slideIndex}}

\
\
')($rootScope); })); it('Should init', function() { var scope = el.scope(); expect(scope.slideBox).not.toBe(undefined); }); });