Move integration-testing-folder in tests-folder
Third part of reorganizing and cleaning up test-folders.
This commit is contained in:
committed by
Jay Linski
parent
715f4af179
commit
edc65b5c19
+1
-1
@@ -15,7 +15,7 @@ node_modules
|
||||
lib/handlebars/compiler/parser.js
|
||||
/coverage/
|
||||
/dist/
|
||||
/integration-testing/*/dist/
|
||||
/tests/integration/*/dist/
|
||||
|
||||
# Third-party or files that must remain unchanged
|
||||
/spec/expected/
|
||||
|
||||
+2
-2
@@ -16,5 +16,5 @@ node_modules
|
||||
lib/handlebars/compiler/parser.js
|
||||
/coverage/
|
||||
/dist/
|
||||
/integration-testing/*/dist/
|
||||
/spec/tmp/*
|
||||
/tests/integration/*/dist/
|
||||
/spec/tmp/*
|
||||
|
||||
+1
-1
@@ -15,7 +15,7 @@ node_modules
|
||||
lib/handlebars/compiler/parser.js
|
||||
/coverage/
|
||||
/dist/
|
||||
/integration-testing/*/dist/
|
||||
/tests/integration/*/dist/
|
||||
|
||||
# Third-party or files that must remain unchanged
|
||||
/spec/expected/
|
||||
|
||||
+2
-2
@@ -7,7 +7,7 @@ module.exports = function(grunt) {
|
||||
'tmp',
|
||||
'dist',
|
||||
'lib/handlebars/compiler/parser.js',
|
||||
'integration-testing/**/node_modules'
|
||||
'/tests/integration/**/node_modules'
|
||||
],
|
||||
|
||||
copy: {
|
||||
@@ -210,7 +210,7 @@ module.exports = function(grunt) {
|
||||
|
||||
bgShell: {
|
||||
integrationTests: {
|
||||
cmd: './integration-testing/run-integration-tests.sh',
|
||||
cmd: './tests/integration/run-integration-tests.sh',
|
||||
bg: false,
|
||||
fail: true
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
module.exports = {
|
||||
root: true,
|
||||
extends: ['eslint:recommended', 'prettier'],
|
||||
env: {
|
||||
browser: true
|
||||
},
|
||||
parserOptions: {
|
||||
sourceType: 'module',
|
||||
ecmaVersion: 6
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,12 @@
|
||||
module.exports = {
|
||||
root: true,
|
||||
extends: ['eslint:recommended', 'prettier'],
|
||||
env: {
|
||||
node: true,
|
||||
browser: true
|
||||
},
|
||||
parserOptions: {
|
||||
sourceType: 'module',
|
||||
ecmaVersion: 6
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user