12 lines
247 B
TypeScript
12 lines
247 B
TypeScript
|
// Copyright (C) 2023 Storj Labs, Inc.
|
||
|
// See LICENSE for copying information.
|
||
|
|
||
|
export const testConfig = {
|
||
|
host: `https://localhost`,
|
||
|
port: `:10001`,
|
||
|
username: `test@storj.io`,
|
||
|
password: `123a123`,
|
||
|
waitForElement: 120000,
|
||
|
|
||
|
};
|