diff --git a/docs/03-github/03-test-runner.mdx b/docs/03-github/03-test-runner.mdx index 2fcb2c8a..f458b629 100644 --- a/docs/03-github/03-test-runner.mdx +++ b/docs/03-github/03-test-runner.mdx @@ -304,7 +304,10 @@ _**required:** `false`_ _**default:** `""`_ The type of tests to be run by the test runner. -Options are: `All`, `PlayMode`, and `EditMode`. +Options are: `All`, `PlayMode`, `EditMode`, and `Standalone`. + +Note: `All` only runs `PlayMode` and `EditMode`. You must explicitly specify `Standalone` for it to +run. _**required:** `false`_ _**default:** `All`_ @@ -426,6 +429,7 @@ jobs: testMode: - playmode - editmode + - standalone steps: - uses: actions/checkout@v2 with: diff --git a/versioned_docs/version-1/04-github/03-test-runner.mdx b/versioned_docs/version-1/04-github/03-test-runner.mdx index 665e84a1..78e2b2de 100644 --- a/versioned_docs/version-1/04-github/03-test-runner.mdx +++ b/versioned_docs/version-1/04-github/03-test-runner.mdx @@ -134,7 +134,10 @@ _**required:** `false`_ _**default:** `auto`_ The type of tests to be run by the test runner. -Options are: "all", "playmode", "editmode" +Options are: "all", "playmode", "editmode", "standalone" + +Note: "all" only runs "playmode" and "editmode". You must explicitly specify "standalone" for it to +run. _**required:** `false`_ _**default:** `all`_ @@ -212,6 +215,7 @@ jobs: testMode: - playmode - editmode + - standalone steps: - uses: actions/checkout@v2 with: