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     - dist/gl-matrix.js
     15 
     16 # stylesheets
     17 #
     18 # Return an array of stylesheet filepaths relative to src_dir to include before jasmine specs.
     19 # Default: []
     20 #
     21 # EXAMPLE:
     22 #
     23 # stylesheets:
     24 #   - css/style.css
     25 #   - stylesheets/*.css
     26 #
     27 stylesheets:
     28 
     29 # helpers
     30 #
     31 # Return an array of filepaths relative to spec_dir to include before jasmine specs.
     32 # Default: ["helpers/**/*.js"]
     33 #
     34 # EXAMPLE:
     35 #
     36 # helpers:
     37 #   - helpers/**/*.js
     38 #
     39 helpers:
     40 
     41 # spec_files
     42 #
     43 #  Return an array of filepaths relative to spec_dir to include.
     44 # Default: ["**/*[sS]pec.js"]
     45 #
     46 # EXAMPLE:
     47 #
     48 # spec_files:
     49 #   - **/*[sS]pec.js
     50 #
     51 spec_files:
     52 
     53 # src_dir
     54 #
     55 # Source directory path. Your src_files must be returned relative to this path. Will use root if left blank.
     56 # Default: project root
     57 #
     58 # EXAMPLE:
     59 #
     60 # src_dir: public
     61 #
     62 src_dir:
     63 
     64 # spec_dir
     65 #
     66 # Spec directory path. Your spec_files must be returned relative to this path.
     67 # Default: spec/javascripts
     68 #
     69 # EXAMPLE:
     70 #
     71 # spec_dir: spec/javascripts
     72 #
     73 spec_dir: spec
     74