Skip to content

Commit 2030363

Browse files
vlio20Vlad Ioffe
and
Vlad Ioffe
authored
ng10 upgrade (#515)
* ng10 upgrade * trying to fix build * trying to fix build * trying to fix build * trying to fix build * fixing build * fixing build * fixing build * adding back package lock * trying to fix e2e * fixng jasmin config * fixing e2e Co-authored-by: Vlad Ioffe <[email protected]>
1 parent f5ebd6e commit 2030363

12 files changed

+4098
-4582
lines changed

.travis.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ cache:
99
- node_modules
1010

1111
addons:
12-
apt:
13-
sources:
14-
- google-chrome
15-
packages:
16-
- google-chrome-stable
12+
chrome: stable
13+
apt:
14+
packages:
15+
- dpkg
1716

1817
before_install:
1918
- export CHROME_BIN=/usr/bin/google-chrome
@@ -22,8 +21,6 @@ before_install:
2221
- sh -e /etc/init.d/xvfb start
2322
- sudo apt-get update
2423
- sudo apt-get install -y libappindicator1 fonts-liberation
25-
- wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
26-
- sudo dpkg -i google-chrome*.deb
2724
- sleep 3
2825
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16"
2926

e2e/format-validation-e2e.spec.ts

+3
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ describe('format validation', () => {
1111
it('should check that the format validation is working', async () => {
1212
const common = async (menu, input) => {
1313
await menu.click();
14+
await input.click();
15+
await input.clear();
1416
await input.sendKeys('lmaldlad');
1517
await page.clickOnBody();
18+
1619
expect(await page.formatValidationMsg.getText()).toBe('invalid format');
1720
await input.clear();
1821
};

e2e/test-utils.ts

-16
This file was deleted.

0 commit comments

Comments
 (0)