Sha256: 2cf6c4ec09ab358cf8c2fd7ae7673ff43340d1e9733d7341e548d02a89382725

Contents?: true

Size: 1.89 KB

Versions: 7

Compression:

Stored size: 1.89 KB

Contents

# basic selenium stuff
selenium:
  host: 'localhost'                   # host which runs selenium server
  port: '4444'                        # selenium server port (if you get connection refused, try 5555)
  tests_out: '/tmp'                   # where your temporary files should be saved
  browsers:           
    - '*firefox'                      # should work on most systems
    #- *googlechrome                 # ... can't get it to work on mac os x or linux
    #- *safari                       # well: mac os x only 
  default_timeout_in_seconds:  15   # requests that take longer fail

# define test suite here ... it's basically a Dir.glob-pattern for all test files
# and dependencies needed by test files
# qunit will be included automatically ... don't bother
# If JS-Files need to be loaded in a special order, list them individually ... all
# paths are relative to the directory from where the test is called (root of your
# project usually)
test_suites:
  -
    name: 'qunit_tests'

    # it should be there ... check it out, adjust it to your needs
    test_file_template: 'tests/tuev/contrib/test_default.html' 
    combine_tests: true # whether to create one big test file or one pre js-test-file
    test_files:
      include: 'client/public/javascripts/tests/**/*.js' # Dir.glob-pattern
      exclude: 'mocks.js'
    dependencies:
      include: # include in a specified order
        - 'client/public/javascripts/vendor/underscore-1.1.4.js'
        - 'client/public/javascripts/vendor/backbone-0.3.3.js'
        - 'client/public/javascripts/config/config.js'
        - 'client/public/javascripts/models/*.js'
        - 'client/public/javascripts/controller/*.js'
        - 'client/public/javascripts/views/*.js'
        - 'client/public/javascripts/tests/**/*mocks.js' # Dir.glob-pattern
        - 'client/public/javascripts/vendor/backbone-0.3.3.js'
        - 'client/public/javascripts/vendor/backbone.js'

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
tuev-0.7.1 contrib/tuev.yml
tuev-0.6.2 contrib/tuev.yml
tuev-0.5.1 contrib/tuev.yml
tuev-0.5.0 contrib/tuev.yml
tuev-0.4.2 contrib/tuev.yml
tuev-0.4.1 contrib/tuev.yml
tuev-0.4.0 contrib/tuev.yml