ng serve --configuration=vi --proxy-config=proxy.conf.json --port=4400
npx nx run term-deposit-open-new-widget:test
npx nx run term-deposit-withdraw-widget:test
npx ng run transfer-to-someone-widget:test —codeCoverage --detect-open-handles
npx ng run transfer-to-someone-widget:test —codeCoverage --detect-open-handles
npx ng run account-detail-widget-extended:test --codeCoverage --detect-open-handles
you can follow this file to create a test case with $localize: libs/widgets/bill-payment-widget/src/sub-components/review-submit/review-submit.component.spec.ts
✅GIT - branch
git commit --amend
git rebase develop
git rebase -i HEAD~{num} //sửa commit
git reset HEAD~{num} //reset về commit number
→ Rename branch
git branch -m new-branch-name
→ Delete branch
git branch -D → for local
git push <remote> --delete <branch> → for remotely
git fetch -p → The -p flag means "prune". After fetching, branches which no longer exist on the remote will be deleted.