Skip to content

Commit

Permalink
fix: update dockerNode cypress
Browse files Browse the repository at this point in the history
Signed-off-by: John Molakvoæ <[email protected]>
  • Loading branch information
skjnldsv committed Jun 30, 2023
1 parent 690362c commit 40fb20a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/dockerNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export const stopNextcloud = async function() {
* @param container the container to get the ip from
*/
export const getContainerIP = async function(
container: Container = docker.getContainer(CONTAINER_NAME)
container: Container = docker.getContainer(CONTAINER_NAME),
): Promise<string> {
let ip = ''
let tries = 0
Expand Down Expand Up @@ -195,7 +195,7 @@ export const waitOnNextcloud = async function(ip: string) {
const runExec = async function(
container: Docker.Container,
command: string[],
verbose = false
verbose = false,
) {
const exec = await container.exec({
Cmd: command,
Expand Down

0 comments on commit 40fb20a

Please sign in to comment.