How can I test an Acorn package?

I’m building a package for Acorn but don’t like releasing anything without tests. I can write basic unit tests for the bulk of the package and mock what needs to be mocked. The problem, however is I would like to test the integration with Acorn itself. Specifically the service provider and a facade if I choose to offer one. Is there anything similar to orchestral/testbench for Acorn?

Any advice would be appreciated.

1 Like

You can see how sage-directives works with tests. It doesn’t boot WordPress though.

1 Like

That is almost exactly what I was thinking I’d need to do. Thank you for the help.