Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "test to validate subrouting" #936

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions browser_tests/ComfyPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,10 +247,6 @@ export class ComfyPage {

async setup() {
await this.goto()
await this.prepPage()
}

async prepPage() {
await this.page.evaluate(() => {
localStorage.clear()
sessionStorage.clear()
Expand Down Expand Up @@ -316,10 +312,6 @@ export class ComfyPage {
await this.page.goto(this.url)
}

async gotoPath(url: string) {
await this.page.goto(this.url + url)
}

async nextFrame() {
await this.page.evaluate(() => {
return new Promise<number>(requestAnimationFrame)
Expand Down
24 changes: 0 additions & 24 deletions browser_tests/core.spec.ts

This file was deleted.

Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion src/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { createRouter, createWebHistory } from 'vue-router'
import LayoutDefault from '@/views/layouts/LayoutDefault.vue'

const router = createRouter({
history: createWebHistory(window.location.pathname),
history: createWebHistory(),
routes: [
{
path: '/',
Expand Down
5 changes: 0 additions & 5 deletions vite.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,6 @@ export default defineConfig({
'/ws': {
target: DEV_SERVER_COMFYUI_URL,
ws: true
},

'/testsubrouteindex': {
target: 'http://localhost:5173',
rewrite: (path) => path.substring('/testsubrouteindex'.length)
}
}
},
Expand Down
Loading