We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 690362c commit 40fb20aCopy full SHA for 40fb20a
1 file changed
cypress/dockerNode.ts
@@ -156,7 +156,7 @@ export const stopNextcloud = async function() {
156
* @param container the container to get the ip from
157
*/
158
export const getContainerIP = async function(
159
- container: Container = docker.getContainer(CONTAINER_NAME)
+ container: Container = docker.getContainer(CONTAINER_NAME),
160
): Promise<string> {
161
let ip = ''
162
let tries = 0
@@ -195,7 +195,7 @@ export const waitOnNextcloud = async function(ip: string) {
195
const runExec = async function(
196
container: Docker.Container,
197
command: string[],
198
- verbose = false
+ verbose = false,
199
) {
200
const exec = await container.exec({
201
Cmd: command,
0 commit comments