Jonelle Amio
Jonelle Amio
> put this in `setup-jest.ts` This should fix the issue > > ```ts > let consoleSpy: jest.SpyInstance; > beforeAll(() => { > consoleSpy = jest.spyOn(global.console, 'error').mockImplementation((message) => { > if...
I use prettier inside eslint, so i tried this : ```json { "files": ["*.component.html"], "extends": ["plugin:@angular-eslint/template/recommended", "plugin:prettier/recommended"], "rules": { "@angular-eslint/template/prefer-control-flow": "warn", "prettier/prettier": ["error", { "overrides": [{ "options": { "parser": "angular"...
> Something like this works: > > ```yaml > - run: | > [[ "${{ inputs.docker_image_name }}" ]] || { echo "docker_image_name input is empty" ; exit 1; } >...