test(ivy): add render3 integration tests (#21557)

PR Close #21557
This commit is contained in:
Marc Laval
2018-01-16 17:17:47 +01:00
committed by Miško Hevery
parent 6397062e22
commit a0dc0a2f46
22 changed files with 408 additions and 1 deletions

View File

@ -0,0 +1,12 @@
import { browser, element, by } from 'protractor';
describe('Hello world E2E Tests', function () {
it('should display: Hello world!', function () {
browser.ignoreSynchronization = true;
browser.get('');
const div = element(by.css('div'));
expect(div.getText()).toEqual('Hello world!');
element(by.css('input')).sendKeys('!');
expect(div.getText()).toEqual('Hello world!!');
});
});