Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 3239ebc

Browse files
authored
chore: enable old ignored tests (#3531)
1 parent 0bf5212 commit 3239ebc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

public/docs/_examples/pipes/e2e-spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
'use strict'; // necessary for es6 output in node
1+
'use strict'; // necessary for es6 output in node
22

33
import { browser, element, by } from 'protractor';
44

@@ -64,7 +64,7 @@ describe('Pipes', function () {
6464
});
6565

6666

67-
xit('should support flying heroes (pure) ', function () {
67+
it('should support flying heroes (pure) ', function () {
6868
let nameEle = element(by.css('flying-heroes input[type="text"]'));
6969
let canFlyCheckEle = element(by.css('flying-heroes #can-fly'));
7070
let mutateCheckEle = element(by.css('flying-heroes #mutate'));
@@ -90,7 +90,7 @@ describe('Pipes', function () {
9090
});
9191

9292

93-
xit('should support flying heroes (impure) ', function () {
93+
it('should support flying heroes (impure) ', function () {
9494
let nameEle = element(by.css('flying-heroes-impure input[type="text"]'));
9595
let canFlyCheckEle = element(by.css('flying-heroes-impure #can-fly'));
9696
let mutateCheckEle = element(by.css('flying-heroes-impure #mutate'));

public/docs/_examples/user-input/e2e-spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
'use strict'; // necessary for es6 output in node
1+
'use strict'; // necessary for es6 output in node
22

33
import { browser, element, by, protractor } from 'protractor';
44

@@ -53,7 +53,7 @@ describe('User Input Tests', function () {
5353
expect(outputTextEle.getText()).toEqual('a | ab | abc |');
5454
});
5555

56-
xit('should be able to filter key events', () => {
56+
it('should be able to filter key events', () => {
5757
let mainEle = element(by.css('key-up3'));
5858
let inputEle = mainEle.element(by.css('input'));
5959
let outputTextEle = mainEle.element(by.css('p'));

0 commit comments

Comments
 (0)