Open
Description
It would be nice to be able to load and send a fixture file by name like
it('finds issues mentioned', function () {
cy.request('/api', 'fx:pr-opened')
})
Currently, have to load fixture and then send
it('finds issues mentioned', function () {
cy.fixture('pr-opened')
.then(data => cy.request('/api', data))
})