- Clarifies what it is for when writing tests - No longer named the same as the `jasmine` that is injected into live code
18 lines
595 B
YAML
18 lines
595 B
YAML
---
|
|
use_sauce: <%= ENV['USE_SAUCE'] %>
|
|
browser: <%= ENV['JASMINE_BROWSER'] %>
|
|
sauce:
|
|
sauce_connect_path: "/Users/gregg/Downloads/sc-4.3.11-osx/bin/sc"
|
|
name: jasmine-core <%= Time.now.to_s %>
|
|
username: <%= ENV['SAUCE_USERNAME'] %>
|
|
access_key: <%= ENV['SAUCE_ACCESS_KEY'] %>
|
|
build: <%= ENV['TRAVIS_BUILD_NUMBER'] || 'Ran locally' %>
|
|
tags:
|
|
- <%= ENV['TRAVIS_RUBY_VERSION'] || RUBY_VERSION %>
|
|
- CI
|
|
tunnel_identifier: <%= ENV['TRAVIS_JOB_NUMBER'] ? %Q("#{ENV['TRAVIS_JOB_NUMBER']}") : nil %>
|
|
os: <%= ENV['SAUCE_OS'] %>
|
|
browser_version: <%= ENV['SAUCE_BROWSER_VERSION'] %>
|
|
|
|
|