Test override

I’m having trouble when overriding a test. I have the following:

test:
  override:
    - npm start :
      timeout: 200000
      parallel: true
      files:
        - base/xaa
        - base/xab
        - base/xac
        - base/xad

And this is giving me the error: test.override.0 should be a either string, command with modifiers or build function. Any ideas on that? I want npm start to be called with each file in parallel.

Thanks.

EDIT: I didn’t realize it needed double tab. Now it works.

1 Like

Glad you figured this out, and thanks for posting the solution!