-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixing angular install in ci pipline
- Loading branch information
1 parent
461c56e
commit 210da72
Showing
1 changed file
with
3 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
210da72
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@walli545
Hey, could you take a look at the testing, i can't get it to work, i alway get this " Use of reserved word 'class' " error and i am kinda lost
210da72
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@electron2302
I got it to work now with puppeteer using headless chrome. PhantomJs is not an option anymore due to them discontinuing development (see ariya/phantomjs#15344) and therefore not supporting newest JS syntax.
The current approach needs to install a lot of libraries before being able to run the tests and takes basically forever (see https://github.com/puppeteer/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker).
We should think abound using another base image that already includes puppeteer and headless chrome (like https://hub.docker.com/r/buildkite/puppeteer) in order to reduce run times.
The tests that fail at the moment should be fixed in the next sprint. They fail because some dependencies are not included in the auto generated tests.
210da72
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you sooo much @walli545
And I am now already using the different image that you suggested