Skip to content

Commit

Permalink
Move integration-testing-folder in tests-folder
Browse files Browse the repository at this point in the history
Third part of reorganizing and cleaning up test-folders.
  • Loading branch information
jaylinski committed Dec 29, 2021
1 parent 715f4af commit edc65b5
Show file tree
Hide file tree
Showing 33 changed files with 29 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .eslintignore
Expand Up @@ -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/
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Expand Up @@ -16,5 +16,5 @@ node_modules
lib/handlebars/compiler/parser.js
/coverage/
/dist/
/integration-testing/*/dist/
/spec/tmp/*
/tests/integration/*/dist/
/spec/tmp/*
2 changes: 1 addition & 1 deletion .prettierignore
Expand Up @@ -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/
Expand Down
4 changes: 2 additions & 2 deletions Gruntfile.js
Expand Up @@ -7,7 +7,7 @@ module.exports = function(grunt) {
'tmp',
'dist',
'lib/handlebars/compiler/parser.js',
'integration-testing/**/node_modules'
'/tests/integration/**/node_modules'
],

copy: {
Expand Down Expand Up @@ -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
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
11 changes: 11 additions & 0 deletions tests/integration/webpack-babel-test/src/.eslintrc.js
@@ -0,0 +1,11 @@
module.exports = {
root: true,
extends: ['eslint:recommended', 'prettier'],
env: {
browser: true
},
parserOptions: {
sourceType: 'module',
ecmaVersion: 6
}
};
File renamed without changes.
File renamed without changes.
12 changes: 12 additions & 0 deletions tests/integration/webpack-test/src/.eslintrc.js
@@ -0,0 +1,12 @@
module.exports = {
root: true,
extends: ['eslint:recommended', 'prettier'],
env: {
node: true,
browser: true
},
parserOptions: {
sourceType: 'module',
ecmaVersion: 6
}
};
File renamed without changes.

0 comments on commit edc65b5

Please sign in to comment.