Update response status TypeScript response.statusCode = 201 JavaScript response.statusCode = 201 Perform additional assertions In certain cases you might want to run additional assertion as part of your teardown script. TypeScript import { expect } from 'expect' expect(response.body).toBe('myString') JavaScript const { expect } = require('expect') expect(response.body).toBe('myString') This can come in handy when the main assertions of the API check are not fine-grained enough, or when you wa...