Merge pull request #146 from upgundecha/unmesh-wip

Move configs in test folder
This commit is contained in:
Unmesh Gundecha
2024-07-06 12:46:47 +08:00
committed by GitHub
6 changed files with 1089 additions and 561 deletions
+1 -1
View File
@@ -23,5 +23,5 @@ jobs:
- name: Run Checklist
shell: 'script -q -e -c "bash {0}"'
run: npm ci && npx eslint test/. && npm run test
run: cd test && npm ci && npx eslint . && npm run test
+1 -1
View File
@@ -1 +1 @@
/node_modules
node_modules
+3 -3
View File
@@ -2,7 +2,7 @@ module.exports = {
'env': {
'es2021': true,
'node': true,
'mocha': true
'mocha': true,
},
'extends': [
'google',
@@ -13,6 +13,6 @@ module.exports = {
},
'rules': {
'new-cap': 0,
'require-jsdoc': 0
}
'require-jsdoc': 0,
},
};
+1 -1
View File
@@ -6,7 +6,7 @@ chai.use(require('chai-string'));
const expect = chai.expect;
const srcMd = fs.readFileSync('README.md', 'utf8');
const srcMd = fs.readFileSync('../README.md', 'utf8');
describe('Checklist', function() {
describe('Header', function() {
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -3,7 +3,7 @@
"version": "1.0.0",
"description": "How They SRE",
"scripts": {
"test": "mocha"
"test": "mocha main.spec.js"
},
"repository": {
"type": "git",