Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export const RequestCalculationOf = (expression: string) =>
Task.where(`#actor requests calculation of ${ expression }`,
Send.a(
PostRequest.to('/api/calculations').with(expression).using({ headers: { 'Content-Type': 'text/plain' }}),
),
Ensure.that(LastResponse.status(), equals(201)),
Ensure.that(LastResponse.header('location'), startsWith('/api/calculations/')),
);
describe('when working with HTTPS', () => {
const testHttpsServer = [
StartLocalServer.onOneOfThePreferredPorts([ 8443, 9443 ]),
Ensure.that(LocalServer.url(), startsWith('https://127.0.0.1')),
Send.a(GetRequest.to(LocalServer.url())),
Ensure.that(LastResponse.status(), equals(200)),
Ensure.that(LastResponse.body(), equals('Hello World!')),
];
given(
require('./servers/barebones'),
require('./servers/express'),
require('./servers/koa'),
).
it('allows the Actor to start, stop and access the location of a HTTPS', function ({ handler, node }) {
if (! satisfies(process.versions.node, node)) {
return this.skip();
}
class Actors implements DressingRoom {
prepare(actor: Actor): Actor {