Guest User

Untitled

a guest
Aug 17th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. test("SSR Loads with an HTML Body", () => {
  2. request(url, (err, resp, body) => {
  3. if (!err && resp.statusCode === 200) {
  4. const cheer = cheerio.load(body);
  5. expect(cheer("#__next").find("div")).toBeGreaterThan(0);
  6. }
  7. });
  8. });
Add Comment
Please, Sign In to add comment