Skip to content

Commit ab6b428

Browse files
authored
Merge pull request amsik#182 from I-Vargas/master
Added treeitem role to tree items. Updated a few devDependencies.
2 parents e40d27d + 7daa45c commit ab6b428

File tree

12 files changed

+15098
-9037
lines changed

12 files changed

+15098
-9037
lines changed

.babelrc

Lines changed: 0 additions & 17 deletions
This file was deleted.

.eslintrc

Lines changed: 0 additions & 8 deletions
This file was deleted.

.eslintrc.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = {
2+
extends: [
3+
//"eslint:recommended",
4+
//"plugin:prettier/recommended",
5+
"plugin:vue/recommended"
6+
],
7+
plugins: [
8+
//"prettier".
9+
"jest"
10+
],
11+
rules: {
12+
eqeqeq: "off",
13+
"no-cond-assign": "off"
14+
}
15+
}
16+
17+
// fix the warnings and then uncomment more options above if you want

babel.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
presets: ['@vue/cli-plugin-babel/preset']
3+
};

jest.config.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
module.exports = {
2+
preset: '@vue/cli-plugin-unit-jest',
3+
setupFiles: ['<rootDir>/tests/setupTests.js'],
4+
testURL: 'http://localhost:8999',
5+
testMatch: ['<rootDir>/tests/*/*.spec.js'],
6+
testEnvironmentOptions: {
7+
pretendToBeVisual: true
8+
},
9+
collectCoverage: true,
10+
collectCoverageFrom: ['<rootDir>/src/**'],
11+
coverageReporters: ['text', 'text-summary']
12+
};

0 commit comments

Comments
 (0)