Can't seem to get test manual parallelization to work

I’m trying to get this feature from the docs to work: https://circleci.com/docs/1.0/parallel-manual-setup/#a-simple-example

I went ahead and put this into my test section:

override:
    - case $CIRCLE_NODE_INDEX in 0) npm run test-server ;; 1) npm run test-ui ;; esac:
        parallel: true

I committed and pushed the working branch… the builds that ran, now don’t list the test section at all.

What am I doing wrong??

Nevermind… it’s running… had to scroll down further… it’s not running as it says here:

https://circleci.com/docs/1.0/configuration/

Each section consists of settings and/or Bash commands, which are run in the order they appear in the file.

It’s running after my compile section… which is way down in my circle.yml file.

Maybe someone should update this doc?