1
0
mirror of https://github.com/amir20/dozzle.git synced 2026-01-03 19:45:01 +01:00

chore(e2e): updates testing to use playwright (#2181)

* chore(e2e): updates testing to use playwright

* chore: updates workflows

* fixes spaces

* fixes space again

* fixes int test to add docker

* chore: ignore e2e tests for vite

* updates screenshots for linux

* updates screenshots again

* chore: uses docker compose for e2e

* adds PWTEST_SKIP_TEST_OUTPUT

* add ci

* updates screenshots again

* updates with  css

* adds more tests

* updates tests
This commit is contained in:
Amir Raminfar
2023-05-22 11:33:25 -07:00
committed by GitHub
parent 0d3bd7246a
commit b2844469d6
46 changed files with 1259 additions and 1746 deletions

View File

@@ -8,8 +8,7 @@ import IconsResolver from "unplugin-icons/resolver";
import Pages from "vite-plugin-pages";
import Layouts from "vite-plugin-vue-layouts";
import VueI18nPlugin from "@intlify/unplugin-vue-i18n/vite";
import basicSsl from '@vitejs/plugin-basic-ssl'
import basicSsl from "@vitejs/plugin-basic-ssl";
export default defineConfig(() => ({
resolve: {
@@ -66,7 +65,7 @@ export default defineConfig(() => ({
strictMessage: false,
include: [path.resolve(__dirname, "locales/**")],
}),
basicSsl()
basicSsl(),
],
server: {
proxy: {
@@ -79,4 +78,7 @@ export default defineConfig(() => ({
},
},
},
test: {
include: ["assets/**/*.spec.ts"],
},
}));