Home | History | Annotate | Download | only in spec
      1 # src_files
      2 #
      3 # Return an array of filepaths relative to src_dir to include before jasmine specs.
      4 # Default: []
      5 #
      6 # EXAMPLE:
      7 #
      8 # src_files:
      9 #   - lib/source1.js
     10 #   - lib/source2.js
     11 #   - dist/**/*.js
     12 #
     13 src_files:
     14     - src/gl-matrix.js
     15     - src/gl-matrix/common.js
     16 
     17 # stylesheets
     18 #
     19 # Return an array of stylesheet filepaths relative to src_dir to include before jasmine specs.
     20 # Default: []
     21 #
     22 # EXAMPLE:
     23 #
     24 # stylesheets:
     25 #   - css/style.css
     26 #   - stylesheets/*.css
     27 #
     28 stylesheets:
     29 
     30 # helpers
     31 #
     32 # Return an array of filepaths relative to spec_dir to include before jasmine specs.
     33 # Default: ["helpers/**/*.js"]
     34 #
     35 # EXAMPLE:
     36 #
     37 # helpers:
     38 #   - helpers/**/*.js
     39 #
     40 helpers:
     41 
     42 # spec_files
     43 #
     44 #  Return an array of filepaths relative to spec_dir to include.
     45 # Default: ["**/*[sS]pec.js"]
     46 #
     47 # EXAMPLE:
     48 #
     49 # spec_files:
     50 #   - **/*[sS]pec.js
     51 #
     52 spec_files:
     53 
     54 # src_dir
     55 #
     56 # Source directory path. Your src_files must be returned relative to this path. Will use root if left blank.
     57 # Default: project root
     58 #
     59 # EXAMPLE:
     60 #
     61 # src_dir: public
     62 #
     63 src_dir:
     64 
     65 # spec_dir
     66 #
     67 # Spec directory path. Your spec_files must be returned relative to this path.
     68 # Default: spec/javascripts
     69 #
     70 # EXAMPLE:
     71 #
     72 # spec_dir: spec/javascripts
     73 #
     74 spec_dir: spec
     75