removed test dependencies from grunt

This commit is contained in:
Eric Rowell 2013-09-11 12:05:34 -07:00
parent a9496339d1
commit 4683ae6917
4 changed files with 0 additions and 1813 deletions

1
.gitignore vendored
View File

@ -1,7 +1,6 @@
jsdoc-toolkit
jsdoc-master
dist
tests/js/unitTests.js
analysis
node_modules
phantomjs.exe

View File

@ -46,26 +46,6 @@ module.exports = function(grunt) {
'src/filters/ConvolvePack.js'
];
var unitTestFiles = [
'tests/js/unit/animationTests.js',
'tests/js/unit/tweenTests.js',
'tests/js/unit/globalTests.js',
'tests/js/unit/utilTests.js',
'tests/js/unit/nodeTests.js',
'tests/js/unit/stageTests.js',
'tests/js/unit/containerTests.js',
'tests/js/unit/layerTests.js',
'tests/js/unit/shapeTests.js',
'tests/js/unit/ddTests.js',
'tests/js/unit/canvasTests.js',
'tests/js/unit/plugins/pathTests.js',
'tests/js/unit/plugins/regularPolygonTests.js',
'tests/js/unit/plugins/starTests.js',
'tests/js/unit/plugins/textPathTests.js',
'tests/js/unit/plugins/labelTests.js'
];
// Project configuration.
var config = {
pkg: grunt.file.readJSON('package.json'),
@ -84,10 +64,6 @@ module.exports = function(grunt) {
prod: {
src: sourceFiles,
dest: 'dist/kinetic-v<%= pkg.version %>.js'
},
test: {
src: unitTestFiles,
dest: 'tests/js/unitTests.js'
}
},
replace: {
@ -210,6 +186,5 @@ module.exports = function(grunt) {
grunt.registerTask('dev', ['clean', 'concat:dev', 'replace:dev']);
grunt.registerTask('beta', ['clean', 'concat:beta', 'replace:beta']);
grunt.registerTask('full', ['clean', 'concat:prod', 'uglify', 'replace:prod1', 'replace:prod2', 'replace:prod3']);
grunt.registerTask('test', ['concat:test']);
grunt.registerTask('hint', ['clean', 'concat:dev', 'replace:dev', 'jshint']);
};

View File

@ -1,25 +0,0 @@
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" type="text/css"href="../base.css">
<script src="../../dist/kinetic-dev.js"></script>
<!-- assets -->
<script src="../assets/worldMap.js"></script>
<script src="../assets/tiger.js"></script>
<script src="../js/Test.js"></script>
<script src="../js/unitTests.js"></script>
<script>
window.onload = function() {
var test = new Test();
test.run();
document.getElementsByTagName('body')[0].addEventListener('mousemove', function(evt) {
//console.log(evt.clientX + ',' + evt.clientY);
}, false);
};
</script>
</head>
<body></body>
</html>

File diff suppressed because it is too large Load Diff