Changeset 27155
- Timestamp:
- 02/10/2014 01:11:25 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 159 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Gruntfile.js
r27105 r27155 161 161 src: [ 162 162 'tests/qunit/**/*.js', 163 '!tests/qunit/vendor/qunit.js' 163 '!tests/qunit/vendor/qunit.js', 164 '!tests/qunit/editor/**' 164 165 ], 165 166 options: grunt.file.readJSON('tests/qunit/.jshintrc') … … 229 230 }, 230 231 qunit: { 231 files: ['tests/qunit/**/*.html'] 232 files: [ 233 'tests/qunit/**/*.html', 234 '!tests/qunit/editor/**' 235 ] 232 236 }, 233 237 phpunit: { … … 341 345 }, 342 346 test: { 343 files: ['tests/qunit/**'], 347 files: [ 348 'tests/qunit/**', 349 '!tests/qunit/editor/**' 350 ], 344 351 tasks: ['qunit'] 345 352 } -
trunk/tests/qunit/index.html
r26222 r27155 29 29 <ol id="qunit-tests"></ol> 30 30 <div id="qunit-fixture"></div> 31 <p><a href="editor">TinyMCE tests</a></p> 31 32 </div> 32 33 </body>
Note: See TracChangeset
for help on using the changeset viewer.