Files
portfolio2023/build/tests/functional/hello_world.spec.js
T
2023-11-24 22:09:08 +01:00

9 lines
381 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const runner_1 = require("@japa/runner");
(0, runner_1.test)('display welcome page', async ({ client }) => {
const response = await client.get('/');
response.assertStatus(200);
response.assertTextIncludes('<h1 class="title"> It Works! </h1>');
});
//# sourceMappingURL=hello_world.spec.js.map