docs: update shared example dependencies to Angular 7 and CLI 7 (#25892)

PR Close #25892
This commit is contained in:
Brandon Roberts
2018-09-07 07:39:58 -05:00
committed by Jason Aden
parent 8e71ad6027
commit 2a14dfa4ba
21 changed files with 2006 additions and 4163 deletions

View File

@ -35,14 +35,14 @@ describe('Reactive forms', function () {
it('should update the name control when the Update Name button is clicked', async () => {
await nameInput.sendKeys(nameText);
const value = await nameInput.getAttribute('value');
const value1 = await nameInput.getAttribute('value');
expect(value).toBe(nameText);
expect(value1).toBe(nameText);
await updateButton.click();
const value = await nameInput.getAttribute('value');
const value2 = await nameInput.getAttribute('value');
expect(value).toBe('Nancy');
expect(value2).toBe('Nancy');
});
it('should update the displayed control value when the name control updated', async () => {