Move integration-testing-folder in tests-folder

Third part of reorganizing and cleaning up test-folders.
This commit is contained in:
Jakob Linskeseder
2021-12-22 20:53:29 +01:00
committed by Jay Linski
parent 715f4af179
commit edc65b5c19
33 changed files with 29 additions and 6 deletions
+1 -1
View File
@@ -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
View File
@@ -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
View File
@@ -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
View File
@@ -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
}
};