Try fixing E2E
This commit is contained in:
parent
e35af96db6
commit
f07f372bc5
4 changed files with 16 additions and 7 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -11,7 +11,6 @@ frontend/*/dist
|
|||
|
||||
backend/db.sqlite3*
|
||||
backend/databases
|
||||
backend/config.yml
|
||||
|
||||
*.log
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,6 @@
|
|||
target
|
||||
Dockerfile
|
||||
.dockerignore
|
||||
db.sqlite3*
|
||||
*.log
|
||||
databases
|
||||
sync_lib/pkg
|
||||
fuzz/artifacts
|
||||
fuzz/corpus
|
||||
fuzz/coverage
|
||||
config.yml
|
||||
|
|
|
|||
13
backend/config.yml
Normal file
13
backend/config.yml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
database:
|
||||
databases_directory_path: databases
|
||||
max_connections: 12
|
||||
server:
|
||||
host: 0.0.0.0
|
||||
port: 3000
|
||||
max_body_size_mb: 512
|
||||
users:
|
||||
user_tokens:
|
||||
- name: admin
|
||||
token: test-token-change-me
|
||||
- name: test
|
||||
token: token
|
||||
|
|
@ -27,7 +27,7 @@ async function runTest({
|
|||
|
||||
const initialSettings: Partial<SyncSettings> = {
|
||||
isSyncEnabled: true,
|
||||
token: "token",
|
||||
token: "test-token-change-me", // same as in backend/config.yml
|
||||
vaultName: uuidv4(),
|
||||
syncConcurrency: concurrency,
|
||||
remoteUri: "http://localhost:3000"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue