web: Fix css loading in unit tests, remove unneeded dot paths (#11629)
* Adding the aliases to Vite helped, but now why are the E2E tests failing? * web: fix CSS loading with unit tests - Fix the CSS loader and replace the cut-and-paste loader with a standardized one. - Fix the aliasing for Wdio's "browser"-based unit testing (Vite) - With the aliasing fixed, remove all of the dotted paths in tests. - Update the End-to-End tests to run in Firefox and Safari. - Put an (optional) pause at the end of each unit test so we can visually confirm the CSS works. - Environment flag is `WDIO_LEMME_SEE=true` - Reduce the verbosity of the tests to level `warn` or higher * This change was due to a misunderstanding. It is not needed in 9. * Fix the Oauth2 Provider test.
This commit is contained in:
		| @ -1,8 +1,9 @@ | ||||
| import { render } from "@goauthentik/elements/tests/utils.js"; | ||||
| import { $, browser, expect } from "@wdio/globals"; | ||||
| import { slug } from "github-slugger"; | ||||
| import { Key } from "webdriverio"; | ||||
|  | ||||
| import { html, render } from "lit"; | ||||
| import { html } from "lit"; | ||||
|  | ||||
| import "../ak-search-select-view.js"; | ||||
| import { sampleData } from "../stories/sampleData.js"; | ||||
|  | ||||
| @ -1,14 +1,15 @@ | ||||
| /* eslint-env jest */ | ||||
| import { AKElement } from "@goauthentik/elements/Base.js"; | ||||
| import { bound } from "@goauthentik/elements/decorators/bound.js"; | ||||
| import { render } from "@goauthentik/elements/tests/utils.js"; | ||||
| import { CustomListenerElement } from "@goauthentik/elements/utils/eventEmitter"; | ||||
| import { $, browser, expect } from "@wdio/globals"; | ||||
| import { slug } from "github-slugger"; | ||||
|  | ||||
| import { html, render } from "lit"; | ||||
| import { html } from "lit"; | ||||
| import { customElement } from "lit/decorators.js"; | ||||
| import { property, query } from "lit/decorators.js"; | ||||
|  | ||||
| import { AKElement } from "../../../../elements/Base.js"; | ||||
| import { bound } from "../../../../elements/decorators/bound.js"; | ||||
| import { CustomListenerElement } from "../../../../elements/utils/eventEmitter"; | ||||
| import "../ak-search-select.js"; | ||||
| import { SearchSelect } from "../ak-search-select.js"; | ||||
| import { type ViewSample, sampleData } from "../stories/sampleData.js"; | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Ken Sternberg
					Ken Sternberg