| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1× 1× 1× 1× 1× 1× 1× 1× | const expect = require("expect");
const Connection = require("../Connection");
describe("a Connection that uses https", function () {
let conn;
beforeEach(function () {
conn = new Connection("https://www.example.com");
});
it("is secure", function () {
expect(conn.isSSL).toBe(true);
});
});
|