Skip to content

Commit c23125f

Browse files
quikeEnrique Mora Parragashine2lay
authored
chore(deps): bump jest to latest v26.6 available version (#555)
* chore(deps): bump jest to latest v27.0.4 available version * fix: merge conflicts * fix: merge conflicts * chore: upgrade to jest v26 due to breaking changes on v27 Co-authored-by: Enrique Mora Parraga <enrique.mora.parraga@verizonmedia.com> Co-authored-by: Shine Lee <aungshine@gmail.com>
1 parent 8726102 commit c23125f

File tree

4 files changed

+3667
-1578
lines changed

4 files changed

+3667
-1578
lines changed

.gitignore

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,76 @@
1+
### Eclipse ###
2+
.classpath
3+
.metadata
4+
.project
5+
.settings/
6+
.apt_generated
7+
bin/
8+
tmp/
9+
*.tmp
10+
*.bak
11+
*.swp
12+
*~.nib
13+
.loadpath
14+
.recommenders
15+
16+
### Intellij ###
17+
.idea/
18+
*.iml
19+
20+
### VisualStudioCode ###
21+
.vscode/*
22+
!.vscode/settings.json
23+
!.vscode/tasks.json
24+
!.vscode/launch.json
25+
!.vscode/extensions.json
26+
.factorypath
27+
28+
### VisualStudioCode Patch ###
29+
# Ignore all local history of files
30+
.history
31+
32+
*.log
33+
34+
### Visual Code
35+
.vscode/
36+
.factorypath
37+
38+
### Misc ###
39+
.DS_Store
40+
cloud-config
41+
.version
42+
tmp/
43+
null
44+
**/tests-results
45+
**/golden-data/
46+
!/geneva-server/src/**/target
47+
.scannerwork/
148
node_modules
249
npm-debug.log
350
*.pem
451
.env
552
coverage
53+
/node_modules
54+
/dist
55+
/tmp
56+
.env
57+
/coverage
58+
/coverage_*
59+
/artifacts
60+
.DS_Store
61+
jsconfig.json
62+
/test-reports
63+
/cypress/videos
64+
/cypress/screenshots
65+
.classpath
66+
.project
67+
.settings/
68+
.vscode/
69+
ssl/
70+
dive.log
71+
test-dist/
72+
test-results.xml
73+
.version
74+
mochawesome-report/
75+
mochawesome.json
76+
mochawesome.html

__tests__/unit/validators/options_processor/options.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ test('return error if unsupported options are provided', async () => {
1717
const input = ['A']
1818
const res = await options.process('label', input, rule)
1919
expect(res.status).toBe('error')
20-
expect(res.validations[0].description).toBe('Cannot find module \'./options/must_be_include\' from \'options.js\'')
20+
expect(res.validations[0].description).toBe('Cannot find module \'./options/must_be_include\' from \'lib/validators/options_processor/options.js\'')
2121
})
2222

2323
test('return raw output if returnRawOutput is set to true', async () => {

0 commit comments

Comments
 (0)