ember-exam icon indicating copy to clipboard operation
ember-exam copied to clipboard

environment test not set when configuring polly without --environment=test

Open oliverlj opened this issue 3 years ago • 0 comments

Hello

I have added pollyjs to my project

// config/polly.js
module.exports = function (env) {
  return {
    // Addon Configuration Options
    enabled: env === 'test',
  };
};

but it is not enabled. I have to put --environment=test in the command line

yarn ember test --server works good yarn ember exam --environment=test --server --random works good yarn ember exam --server --random failed

oliverlj avatar May 18 '22 07:05 oliverlj