This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +5
-8
lines changed Expand file tree Collapse file tree 5 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 1
1
describe ( 'App where angular is loaded more than once' , function ( ) {
2
2
beforeEach ( function ( ) {
3
- loadFixture ( 'angular-already-loaded' ) . andWaitForAngular ( ) ;
3
+ loadFixture ( 'angular-already-loaded' ) ;
4
4
} ) ;
5
5
6
6
it ( 'should have the interpolated text' , function ( ) {
Original file line number Diff line number Diff line change 1
1
var helper = {
2
- andWaitForAngular : function ( ) {
3
- browser . waitForAngular ( ) ;
4
- } ,
5
2
loadFixture : function ( fixture ) {
6
3
var i = 0 ;
7
4
while ( fixture [ i ] === '/' ) ++ i ;
Original file line number Diff line number Diff line change 1
1
describe ( 'angular-loader' , function ( ) {
2
2
beforeEach ( function ( ) {
3
- loadFixture ( 'loader' ) . andWaitForAngular ( ) ;
3
+ loadFixture ( 'loader' ) ;
4
4
} ) ;
5
5
6
6
it ( 'should not be broken by loading the modules before core' , function ( ) {
Original file line number Diff line number Diff line change 1
1
describe ( 'Customizing the jqLite / jQuery version' , function ( ) {
2
2
it ( 'should be able to force jqLite' , function ( ) {
3
- loadFixture ( 'ngJq' ) . andWaitForAngular ( ) ;
3
+ loadFixture ( 'ngJq' ) ;
4
4
expect ( element ( by . binding ( 'jqueryVersion' ) ) . getText ( ) ) . toBe ( 'jqLite' ) ;
5
5
} ) ;
6
6
7
7
it ( 'should be able to use a specific version jQuery' , function ( ) {
8
- loadFixture ( 'ngJqJquery' ) . andWaitForAngular ( ) ;
8
+ loadFixture ( 'ngJqJquery' ) ;
9
9
expect ( element ( by . binding ( 'jqueryVersion' ) ) . getText ( ) ) . toBe ( '2.1.0' ) ;
10
10
} ) ;
11
11
} ) ;
Original file line number Diff line number Diff line change 1
1
// Sample E2E test:
2
2
describe ( 'Sample' , function ( ) {
3
3
beforeEach ( function ( ) {
4
- loadFixture ( 'sample' ) . andWaitForAngular ( ) ;
4
+ loadFixture ( 'sample' ) ;
5
5
} ) ;
6
6
7
7
it ( 'should have the interpolated text' , function ( ) {
You can’t perform that action at this time.
0 commit comments