-
Notifications
You must be signed in to change notification settings - Fork 19
Conversation
server/src/main/java/com/chutneytesting/design/api/globalvar/GlobalVarController.java
Show resolved
Hide resolved
...src/main/java/com/chutneytesting/design/infra/storage/globalvar/FileGlobalVarRepository.java
Show resolved
Hide resolved
server/src/main/java/com/chutneytesting/design/api/scenario/OldFormatAdapter.java
Outdated
Show resolved
Hide resolved
server/src/main/java/com/chutneytesting/design/api/scenario/v2_0/mapper/GwtScenarioMapper.java
Outdated
Show resolved
Hide resolved
...src/main/java/com/chutneytesting/design/infra/storage/globalvar/FileGlobalVarRepository.java
Outdated
Show resolved
Hide resolved
task-impl/src/main/java/com/chutneytesting/task/function/YamlFunctions.java
Show resolved
Hide resolved
c95f869
to
618b7c4
Compare
We have to check that when saving a element as a yaml multiline, this format persist after. |
c7f6353
to
5318862
Compare
Codecov Report
@@ Coverage Diff @@
## master #699 +/- ##
============================================
+ Coverage 74.01% 74.05% +0.03%
- Complexity 3512 3537 +25
============================================
Files 644 648 +4
Lines 15179 15275 +96
Branches 879 886 +7
============================================
+ Hits 11235 11312 +77
- Misses 3496 3511 +15
- Partials 448 452 +4
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Conversion yaml -> json -> yaml doesnt seems to be as smart as expected. (ie presentation is worst in yaml than in json)
Some example :
We cannot have json directly :
document:
{
"json":"value",
"json2": "value2"
}
=>
document:
json: value
json2: value2
Long key for by example xml-assert or json-assert are transformed on two lines :
https://stackoverflow.com/questions/36294791/how-do-you-write-multiple-lines-in-a-yaml-key
Does we need to remove completly json store format ?
Issue Number
fixes #170
Describe the changes you've made
Describe if there is any unusual behaviour of your code
NA
Additional context
Test plan
Checklist