What is the best way to use Pa11y with Supertest? Something like:
describe ('my page', function () {
    it ('is accessible', function () {
        request (server).get ('/').expect (function ({ body }) {
            // How to run Pa11y here?
        });
    });
})
				
                        
I would suggest not using
supertestat all for these accessibility test aspa11ycan ping url's directly.