-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtest.ts
41 lines (36 loc) · 1.23 KB
/
test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { expect } from "chai";
import * as automation from "./test-automation";
import * as superagent from "superagent";
import * as cheerio from "cheerio";
describe("Deploying a static website", () => {
before(async () => {
await automation.deploy();
});
after(async () => {
await automation.destroy();
});
it("should return 200", async () => {
await automation
.getOutputs()
.then((result) => result.websiteUrl.value)
.then((url) => {
expect(url).to.be.a("string");
return superagent.get(url);
})
.then((response) => expect(response.statusCode).to.equal(200))
});
it("should return expected html", async () => {
await automation
.getOutputs()
.then((result) => result.websiteUrl.value)
.then((url) => {
expect(url).to.be.a("string");
return superagent.get(url);
})
.then((response) => response.text)
.then((html) => {
const dom = cheerio.load(html);
expect(dom("title").text()).to.equal("Pulumi Workshop Static Website");
});
});
});