{
  "landingPage": "/wp-admin/index.php",
  "preferredVersions": {
    "php": "8.5",
    "wp": "latest"
  },
  "phpExtensionBundles": [
    "kitchen-sink"
  ],
  "steps": [
    {
      "step": "login",
      "username": "admin",
      "password": "password"
    },
    {
      "step": "installPlugin",
      "pluginData": {
        "resource": "wordpress.org/plugins",
        "slug": "js-error-logger"
      },
      "options": {
        "activate": true
      }
    },
    {
      "step": "updateUserMeta",
      "meta": {
        "metaboxhidden_dashboard": [
          "dashboard_right_now",
          "dashboard_site_health",
          "dashboard_quick_press",
          "dashboard_primary",
          "dashboard_activity"
        ],
        "show_welcome_panel": "0"
      },
      "userId": 1
    },
    {
      "step": "mkdir",
      "path": "/wordpress/wp-content/uploads"
    },
    {
      "step": "writeFile",
      "path": "/wordpress/wp-content/uploads/playground.js",
      "data": "function jserrlog_error(){test_js_error_logger();} jserrlog_error();"
    },
    {
      "step": "writeFile",
      "path": "/wordpress/wp-content/mu-plugins/zzzzz.php",
      "data": "<?php add_action('admin_notices', function() {  echo '<div class=\"notice notice-warning\"><p>Go to the front-end and refresh the log to see an error appear</p></div>'; }); add_action('wp_enqueue_scripts', function (){wp_enqueue_script('test_error','/wp-content/uploads/playground.js');});"
    }
  ]
}
