Configuration

Configuration

CodeceptJS configuration is set in codecept.js file.

After running codeceptjs init it should be saved in test root.

Here is an overview of available options with their defaults:

  • tests: "./*_test.js" - pattern to locate tests
  • include: {} - actors and pageobjects to be registered in DI container and included in tests.
  • timeout: 10000 - default tests timeout
  • output: "./output" - where to store failure screenshots, etc
  • helpers: {} - list of enabled helpers
  • mocha: {} - mocha options, reporters can be configured here
  • multiple: {} - multiple options, see #PR439 for more details
  • name: "tests" - test suite name (not used)
  • bootstrap: "./bootstrap.js" - an option to run code before tests are run. See Hooks).
  • teardown: - an option to run code after tests are run. See Hooks).
  • translation: - locale to be used to print steps output, as well as used in source code.

Dynamic Configuration

By default codecept.json is used for configuration. You can override its values in runtime by using --override or -o option in command line, passing valid JSON as a value:

codeceptjs run -o '{ "helpers": {"WebDriverIO": {"browser": "firefox"}}}'

You can also switch to JS configuration format for more dynamic options. Create codecept.conf.js file and make it export config property.

See the config example:

exports.config = {
  helpers: {
    WebDriverIO: {
      // load variables from the environment and provide defaults
      url: process.env.CODECEPT_URL || 'http://localhost:3000',

      user: process.env.CLOUDSERVICE_USER,
      key: process.env.CLOUDSERVICE_KEY,

      coloredLogs: true,
      waitforTimeout: 10000
    }
  },

  // don't build monolithic configs
  mocha: require('./mocha.conf.js') || {},

  // here goes config as it was in codecept.json
  // ....
};

(Don't copy-paste this config, it's just demo)

Profile

Using values from process.profile you can change the config dynamically. It provides value of --profile option passed to runner. Use its value to change config value on the fly.

For instance, with the config above we can change browser value using profile option

codeceptjs run --profile firefox
exports.config = {
  helpers: {
    WebDriverIO: {
      url: 'http://localhost:3000',
      // load value from `profile`
      browser: process.profile || 'firefox'

    }
  }
};

© 2015 DavertMik <davert@codegyre.com> (http://codegyre.com)
Licensed under the MIT License.
http://codecept.io/configuration/

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部