Skip to content

Commit d6a13c9

Browse files
committed
prettier
1 parent e364f7e commit d6a13c9

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

test/e2e/tls_connection.test.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
import { describe, expect, test } from "vitest"
22
import { createEnvironment, Environment } from "../../src/environment.js"
3-
import {
4-
host,
5-
username,
6-
eventually,
7-
numberOfConnections,
8-
password,
9-
} from "../support/util.js"
3+
import { host, username, eventually, numberOfConnections, password } from "../support/util.js"
104
import { Connection } from "../../src/connection.js"
115
import { readFile } from "fs/promises"
126

@@ -19,7 +13,7 @@ describe("TLS Connection", () => {
1913
ca: await readFile("./tls-gen/basic/result/ca_certificate.pem", "utf8"),
2014
cert: await readFile(`./tls-gen/basic/result/client_rabbitmq_certificate.pem`, "utf8"),
2115
key: await readFile(`./tls-gen/basic/result/client_rabbitmq_key.pem`, "utf8"),
22-
rejectUnauthorized: true
16+
rejectUnauthorized: true,
2317
}
2418

2519
environment = createEnvironment({ host, port: 5671, username, password, tls })

0 commit comments

Comments
 (0)