From 5425a86058e4a82515673a153540548bfdd35d53 Mon Sep 17 00:00:00 2001
From: Alvin Huang <alvin@hashicorp.com>
Date: Thu, 3 Jan 2019 23:50:02 -0500
Subject: [PATCH] add documentation on how to use ember-exam

---
 ui-v2/README.md | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/ui-v2/README.md b/ui-v2/README.md
index fa05757996..de73f132e1 100644
--- a/ui-v2/README.md
+++ b/ui-v2/README.md
@@ -60,3 +60,20 @@ Please note: You do not need to run `make start-api`/`yarn run start:api` to run
 
 * `make test` or `yarn run test`
 * `make test-view` or `yarn run test:view` to view the tests running in Chrome
+
+#### Running Tests in Parallel
+Alternatively, `ember-exam` can be used to split the tests across multiple browser instances for faster results. Most options are the same as `ember test`. To see a full list of options, run `ember exam --help`.
+
+**Note:** The `EMBER_EXAM_PARALLEL` environment variable must be set to override the default `parallel` value of `1` browser instance in [testem.js](./testem.js).
+
+To quickly run the tests across 4 parallel browser instances:
+```sh
+yarn test-parallel
+```
+
+To run manually:
+```sh
+$ EMBER_EXAM_PARALLEL=true ember exam --split <num> --parallel
+```
+
+More ways to split tests can be found in the [ember-exam README.md](https://github.com/trentmwillis/ember-exam/blob/master/README.md).
\ No newline at end of file
-- 
GitLab