File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ module.exports = defineConfig({
3737 /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
3838 use : {
3939 /* Base URL to use in actions like `await page.goto('/')`. */
40- // baseURL: 'http://127.0.0.1:3000 ',
40+ baseURL : process . env . MESHERY_SERVER_URL || 'http://localhost:9081 ' ,
4141 video : {
4242 mode : 'retain-on-failure' ,
4343 } ,
Original file line number Diff line number Diff line change 11import { expect , test } from '@playwright/test' ;
2- import { ENV } from './env' ;
32
43test . describe ( 'Index Page UI Tests' , ( ) => {
54 test . beforeEach ( async ( { page } ) => {
65 // Visit Index Page (Dasboard)
7- await page . goto ( ENV . MESHERY_SERVER_URL ) ;
6+ await page . goto ( '/' ) ;
87 } ) ;
98
109 test ( 'Test if Left Navigation Panel is displayed' , async ( { page } ) => {
You can’t perform that action at this time.
0 commit comments