v1.2.0
What's Changed
Full Changelog: 1.1.0...1.2.0
Highlights
Plugins and Theme Configuration
You can can now configure plugins and themes to use in tests, like so:
# config.touchstone.php
<?php
return [
'plugins' => [
[
'name' => 'Hello Dolly',
'file' => dirname(__FILE__) . '/bin/plugins/hello-dolly/hello.php',
],
],
'theme' => [
'root' => dirname(__FILE__) . '/../../themes/twentytwentyone',
],
];