cyclejs/cycle-core

View on GitHub
http/.testem.json

Summary

Maintainability
Test Coverage
{
  "framework": "mocha",
  "disable_watching": true,
  "before_tests": "../node_modules/.bin/browserify test/browser/lib/index.js --outfile test/browser-bundle.js",
  "on_start": "./.scripts/saucie-connect.js",
  "on_exit": "./.scripts/saucie-disconnect.js",
  "after_tests": "rm test/browser-bundle.js",
  "port": 8080,
  "browser_start_timeout": 500,
  "src_files": [
    "test/browser-bundle.js"
  ],
  "proxies": {
    "/hello": { "target": "http://localhost:8070" },
    "/pet": { "target": "http://localhost:8070" },
    "/json": { "target": "http://localhost:8070" },
    "/querystring": { "target": "http://localhost:8070" },
    "/error": { "target": "http://localhost:8070" },
    "/delete": { "target": "http://localhost:8070" },
    "/binary": { "target": "http://localhost:8070" }
  },
  "launchers": {
    "SL_Chrome_Current": {
      "exe": "./node_modules/.bin/saucie",
      "args": ["-b", "chrome", "-p", "Windows 10", "-v", "latest", "--no-connect", "--attach", "-u"],
      "protocol": "browser"
    },
    "SL_Firefox_Current": {
      "exe": "./node_modules/.bin/saucie",
      "args": ["-b", "firefox", "-p", "Windows 10", "-v", "latest", "--no-connect", "--attach", "-u"],
      "protocol": "browser"
    },
    "SL_Safari_Current": {
      "exe": "./node_modules/.bin/saucie",
      "args": ["-b", "safari", "-v", "9", "--no-connect", "--attach", "-u"],
      "protocol": "browser"
    },
    "SL_Chrome_49": {
      "exe": "./node_modules/.bin/saucie",
      "args": ["-b", "chrome", "-p", "Windows 10", "-v", "49", "--no-connect", "--attach", "-u"],
      "protocol": "browser"
    },
    "SL_Chrome_50": {
      "exe": "./node_modules/.bin/saucie",
      "args": ["-b", "chrome", "-p", "Windows 10", "-v", "50", "--no-connect", "--attach", "-u"],
      "protocol": "browser"
    },
    "SL_iphone_8": {
      "exe": "./node_modules/.bin/saucie",
      "args": ["-b", "iphone", "-v", "8.4", "--no-connect", "--attach", "-u"],
      "protocol": "browser"
    },
    "SL_iphone_9": {
      "exe": "./node_modules/.bin/saucie",
      "args": ["-b", "iphone", "-v", "9.1", "--no-connect", "--attach", "-u"],
      "protocol": "browser"
    },
    "SL_android_4_4": {
      "exe": "./node_modules/.bin/saucie",
      "args": ["-b", "android", "-p", "Linux", "-v", "4.4", "--device-name", "Samsung Galaxy S3 Emulator", "--no-connect", "--attach", "-u"],
      "protocol": "browser"
    },
    "SL_Safari_Last": {
      "exe": "./node_modules/.bin/saucie",
      "args": ["-b", "safari", "-v", "8", "--no-connect", "--attach", "-u"],
      "protocol": "browser"
    },
    "SL_MS_Edge": {
      "exe": "./node_modules/.bin/saucie",
      "args": ["-b", "microsoftedge", "--no-connect", "--attach", "-u"],
      "protocol": "browser"
    },
    "SL_IE_11": {
      "exe": "./node_modules/.bin/saucie",
      "args": ["-b", "internet explorer", "-v", "11", "--no-connect", "--attach", "-u"],
      "protocol": "browser"
    },
    "SL_IE_10": {
      "exe": "./node_modules/.bin/saucie",
      "args": ["-b", "internet explorer", "-v", "10", "--no-connect", "--attach", "-u"],
      "protocol": "browser"
    }
  },
  "launch_in_dev": [
    "Chrome",
    "Firefox"
  ],
  "launch_in_ci": [
    "SL_android_4_4"
  ]
}