Issue:
Angular tests have been excluded and they seem to be mostly fixed with Jest 28, so this is to try upgrading to Jest 28.
## What I did
This updates the monorepo to use jest 28. Previously, we ran all tests in the `jsdom` environment, but the newer jest is more picky about it, and calls like `setImmediate` started to fail after the upgrade.
So now we test some packages with a node environment and some with a jsdom environment. It does this by splitting the original jest config into two separate configs, one for browser environments, and one for node environments, and creating `jest.config.js` files in the root of each package. It's a little tedious, but it gives us greater control over how jest runs for each package, not only the environment, but other config as well.
This also starts fixing Angular tests that have got behind while excluded, though we're not yet able to turn them back on just yet.
## How to test
CI
Issue: N/A
## What I did
following recommendation from CI warnings:
```
Looks like Playwright Test or Playwright was just updated to 1.28.0.
Please update docker image as well.
- current: mcr.microsoft.com/playwright:v1.27.0-focal
- required: mcr.microsoft.com/playwright:v1.28.0-focal
```
## How to test
- [ ] Is this testable with Jest or Chromatic screenshots?
- [ ] Does this need a new example in the kitchen sink apps?
- [ ] Does this need an update to the documentation?
If your answer is yes to any of these, please make sure to include it in your PR.
<!--
Everybody: Please submit all PRs to the `next` branch unless they are specific to the current release. Storybook maintainers cherry-pick bug and documentation fixes into the `master` branch as part of the release process, so you shouldn't need to worry about this. For additional guidance: https://storybook.js.org/docs/react/contribute/how-to-contribute
Maintainers: Please tag your pull request with at least one of the following:
`["cleanup", "BREAKING CHANGE", "feature request", "bug", "documentation", "maintenance", "dependencies", "other"]`
-->