Update dependencies #76
Annotations
3 errors
update-deps
Process completed with exit code 1.
|
src/merge-processor.test.ts > processMerge > processes merge with conflicts:
lib/src/merge-processor.test.ts#L113
AssertionError: expected "writeFile" to be called with arguments: [ 'test.json', …(2) ]
Received:
1st writeFile call:
[
"test.json",
- "conflict content",
+ "conflict content
+ ",
"utf8",
]
2nd writeFile call:
[
- "test.json",
- "conflict content",
- "utf8",
+ "test.json.conflict.json",
+ "[
+ {
+ \"path\": \"a\",
+ \"reason\": \"test conflict\"
+ }
+ ]
+ ",
]
Number of calls: 2
❯ src/merge-processor.test.ts:113:30
|
src/index.test.ts > resolveConflicts > handles files with conflicts:
lib/src/index.test.ts#L113
AssertionError: expected "writeFile" to be called with arguments: [ 'test.json', …(2) ]
Received:
1st writeFile call:
[
"test.json",
- "conflict content",
+ "conflict content
+ ",
"utf8",
]
2nd writeFile call:
[
- "test.json",
- "conflict content",
- "utf8",
+ "test.json.conflict.json",
+ "[
+ {
+ \"path\": \"a\",
+ \"reason\": \"test conflict\"
+ }
+ ]
+ ",
]
Number of calls: 2
❯ src/index.test.ts:113:30
|