File tree Expand file tree Collapse file tree 6 files changed +5
-10
lines changed Expand file tree Collapse file tree 6 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -1347,11 +1347,6 @@ jobs:
1347
1347
run : |
1348
1348
(./console server) & (make initialize-permissions)
1349
1349
1350
- - name : Start Browser at port 5005
1351
- run : |
1352
- echo "yarn playwright"
1353
- (cd $GITHUB_WORKSPACE/portal-ui; yarn playwright) & (sleep 120) # To start port 5005 with Istanbul Plugin Injected
1354
-
1355
1350
- name : Run Playwright tests
1356
1351
run : |
1357
1352
echo "Run tests under playwright folder only"
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import { minioadminFile } from "./consts";
18
18
19
19
setup ( "authenticate as admin" , async ( { page } ) => {
20
20
// Perform authentication steps. Replace these actions with your own.
21
- await page . goto ( "http://localhost:5005 " ) ;
21
+ await page . goto ( "http://localhost:9090 " ) ;
22
22
await page . getByPlaceholder ( "Username" ) . click ( ) ;
23
23
await page . getByPlaceholder ( "Username" ) . fill ( "minioadmin" ) ;
24
24
await page . getByPlaceholder ( "Password" ) . click ( ) ;
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import { minioadminFile } from "./consts";
20
20
test . use ( { storageState : minioadminFile } ) ;
21
21
22
22
test . beforeEach ( async ( { page } ) => {
23
- await page . goto ( "http://localhost:5005 /" ) ;
23
+ await page . goto ( "http://localhost:9090 /" ) ;
24
24
} ) ;
25
25
26
26
test ( "create a new bucket" , async ( { page } ) => {
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import { minioadminFile } from "./consts";
21
21
test . use ( { storageState : minioadminFile } ) ;
22
22
23
23
test . beforeEach ( async ( { page } ) => {
24
- await page . goto ( "http://localhost:5005 /" ) ;
24
+ await page . goto ( "http://localhost:9090 /" ) ;
25
25
} ) ;
26
26
27
27
test ( "Add a new group" , async ( { page } ) => {
Original file line number Diff line number Diff line change 1
1
import { test , expect } from "@playwright/test" ;
2
2
3
3
test ( "Basic `minioadmin` Login" , async ( { page, context } ) => {
4
- await page . goto ( "http://localhost:5005 " ) ;
4
+ await page . goto ( "http://localhost:9090 " ) ;
5
5
await page . getByPlaceholder ( "Username" ) . click ( ) ;
6
6
await page . getByPlaceholder ( "Username" ) . fill ( "minioadmin" ) ;
7
7
await page . getByPlaceholder ( "Password" ) . click ( ) ;
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import { minioadminFile } from "./consts";
20
20
test . use ( { storageState : minioadminFile } ) ;
21
21
22
22
test . beforeEach ( async ( { page } ) => {
23
- await page . goto ( "http://localhost:5005 /" ) ;
23
+ await page . goto ( "http://localhost:9090 /" ) ;
24
24
} ) ;
25
25
26
26
test ( "Can create a policy" , async ( { page } ) => {
You can’t perform that action at this time.
0 commit comments