From https://github.com/angular/angular-cli/issues/28271 When using Karma with Chrome 128.x on OSX, the following error is displayed: `Some of your tests did a full page reload!`. Reproduction steps ``` mkdir karma-test cd karma-test npm init -y npm install karma karma-chrome-launcher karma-jasmine --save-dev npx karma init ``` Update the karma config to include ``` client: { clearContext: false, }, ``` ``` npx karma start —-single-run ```