This repository was archived by the owner on Dec 4, 2017. It is now read-only.
File tree 2 files changed +5
-5
lines changed 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- 'use strict' ; // necessary for es6 output in node
1
+ 'use strict' ; // necessary for es6 output in node
2
2
3
3
import { browser , element , by } from 'protractor' ;
4
4
@@ -64,7 +64,7 @@ describe('Pipes', function () {
64
64
} ) ;
65
65
66
66
67
- xit ( 'should support flying heroes (pure) ' , function ( ) {
67
+ it ( 'should support flying heroes (pure) ' , function ( ) {
68
68
let nameEle = element ( by . css ( 'flying-heroes input[type="text"]' ) ) ;
69
69
let canFlyCheckEle = element ( by . css ( 'flying-heroes #can-fly' ) ) ;
70
70
let mutateCheckEle = element ( by . css ( 'flying-heroes #mutate' ) ) ;
@@ -90,7 +90,7 @@ describe('Pipes', function () {
90
90
} ) ;
91
91
92
92
93
- xit ( 'should support flying heroes (impure) ' , function ( ) {
93
+ it ( 'should support flying heroes (impure) ' , function ( ) {
94
94
let nameEle = element ( by . css ( 'flying-heroes-impure input[type="text"]' ) ) ;
95
95
let canFlyCheckEle = element ( by . css ( 'flying-heroes-impure #can-fly' ) ) ;
96
96
let mutateCheckEle = element ( by . css ( 'flying-heroes-impure #mutate' ) ) ;
Original file line number Diff line number Diff line change 1
- 'use strict' ; // necessary for es6 output in node
1
+ 'use strict' ; // necessary for es6 output in node
2
2
3
3
import { browser , element , by , protractor } from 'protractor' ;
4
4
@@ -53,7 +53,7 @@ describe('User Input Tests', function () {
53
53
expect ( outputTextEle . getText ( ) ) . toEqual ( 'a | ab | abc |' ) ;
54
54
} ) ;
55
55
56
- xit ( 'should be able to filter key events' , ( ) => {
56
+ it ( 'should be able to filter key events' , ( ) => {
57
57
let mainEle = element ( by . css ( 'key-up3' ) ) ;
58
58
let inputEle = mainEle . element ( by . css ( 'input' ) ) ;
59
59
let outputTextEle = mainEle . element ( by . css ( 'p' ) ) ;
You can’t perform that action at this time.
0 commit comments