UNPKG

flagpole

Version:

Simple and fast DOM integration and REST API testing framework.

12 lines (8 loc) 255 B
const { Flagpole } = require('../dist/index.js'); const suite = Flagpole.Suite('Basic Smoke Test of Site') .base('https://www.google.com'); suite.Scenario('Homepage Loads') .open('/') .html() .assertions(function (response) { });