This project was generated with Angular CLI version 8.3.20.
Run ng serve
for a dev server. Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
Run ng generate component component-name
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module
.
Run ng build
to build the project. The build artifacts will be stored in the dist/
directory. Use the --prod
flag for a production build.
Run ng test
to execute the unit tests via Jest.
Report: coverage/lcov-report/index.html
Run ng e2e
to execute the end-to-end tests via Protractor.
Run with chrome and firefox headless
Report: e2e/report/index.html
Run npm run acceptance-test
to execute the acceptance tests via Protractor.
Run with chrome and firefox headless
Report: acceptance-test/report/index.html
To get more help on the Angular CLI use ng help
or go check out the Angular CLI README.
Webdriver manager update
Run ./node_modules/protractor/node_modules/webdriver-manager/bin/webdriver-manager update
Karma to Jest
https://itnext.io/testing-angular-applications-with-jest-and-spectator-c05991579807
$ npx -p @angular/cli ng new angular-jest-spectator
$ npm rm -D karma karma-chrome-launcher karma-coverage-istanbul-reporter karma-jasmine karma-jasmine-html-reporter
$ npm install --save-dev jest jest-preset-angular @types/jest
$ rm karma.conf.js
$ rm src/test.ts
https://medium.com/@wescopeland/easier-angular-unit-testing-af4b972fea12
$ npx -p @angular/cli ng new angular-jest-spectator-two
$ rm karma.conf.js src/test.ts
$ npm rm -D karma karma-chrome-launcher karma-coverage-istanbul-reporter karma-jasmine karma-jasmine-html-reporter
Obs: "jest-preset-angular": "^7.1.1",
Add cucumber + chai to protractor
cucumber
https://www.amadousall.com/angular-e2e-with-cucumber/
https://imasters.com.br/desenvolvimento/integrando-protractor-com-cucumberjs
https://www.npmjs.com/package/protractor-multiple-cucumber-html-reporter-plugin
$ npm i -D cucumber protractor-cucumber-framework cucumber-html-reporter
$ npm i -D @types/{chai,cucumber} chai cucumber protractor-cucumber-framework
$npm uninstall -D jasmine-spec-reporter jasmine-core @types/jasmine @types/jasminewd2
Obs: remove pretty
chai
https://www.chaijs.com/api/bdd/#method_include
Base app
https://www.freecodecamp.org/news/angular-8-tutorial-in-easy-steps/
Run npm run generate
to populate fake database
Run npm run server
to expose fake json server
Testing
https://www.ng-conf.org/2019/mocking-dependencies-angular/
Can't resolve all parameters for Component: (?)
https://github.com/thymikee/jest-preset-angular/issues/288
Testing Asynchronous Code
https://netbasal.com/testing-asynchronous-code-in-angular-using-fakeasync-fc777f86ed13
https://netbasal.com/testing-observables-in-angular-a2dbbfaf5329
Deploy
https://medium.com/codfeedev/deploy-multi-environments-with-angular-nginx-and-docker-fc74254f8311
WIP
- Config by ENV var (Docker build)
- Keycloak
- stubby4node
- BFF