File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
client/src/platform/web/components/workspace Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
2
<div class =" top-bar" >
3
- Test Client
3
+ Test Client (WebDAV at port 1900)
4
4
</div >
5
5
</template >
6
6
11
11
flex-direction : row-reverse ;
12
12
height : 100% ;
13
13
padding : 0 20px ;
14
+ cursor : pointer ;
14
15
}
15
16
</style >
Original file line number Diff line number Diff line change @@ -68,6 +68,6 @@ export async function initWebDAVServer(context: AppContext) {
68
68
69
69
client . on ( 'indexSynced' , ( ) => {
70
70
setFileList ( server , name , client . index ) ;
71
- server . start ( ( ) => console . log ( `WebDAV server started on ${ endpoint } ` ) ) ;
71
+ server . start ( ( ) => console . log ( `WebDAV server started on 1900 ` ) ) ;
72
72
} ) ;
73
73
}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { TestAgent } from './agent.js';
4
4
test ( 'demo' , async ( { page } ) => {
5
5
const agent = new TestAgent ( ) ;
6
6
await agent . start ( {
7
- name : 'demo ' ,
7
+ name : 'default ' ,
8
8
webPort : 5173 ,
9
9
backendPort : 3000 ,
10
10
} ) ;
@@ -16,5 +16,5 @@ test('demo', async ({ page }) => {
16
16
await agent . web . createDoc ( page , 'Second Doc' ) ;
17
17
await agent . web . createDoc ( page , 'Third Doc' ) ;
18
18
// await page.pause();
19
- // await agent.stop();
19
+ await agent . stop ( ) ;
20
20
} ) ;
You can’t perform that action at this time.
0 commit comments