Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
test step solution
Signed-off-by: shmck <[email protected]>
  • Loading branch information
ShMcK committed May 31, 2020
commit 029e1cdc6a64c84a22eca9e24479cd69b8cce21b
10 changes: 10 additions & 0 deletions tests/parse.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,10 @@ The first step
filter: "someFilter",
subtasks: true,
},
solution: {
commands: ["npm install"],
files: ["someFile.js"],
},
},
],
},
Expand All @@ -396,6 +400,7 @@ The first step
config,
commits: {
L1S1Q: ["abcdefg1", "123456789"],
L1S1A: ["1gfedcba", "987654321"],
},
});
const expected = {
Expand All @@ -419,6 +424,11 @@ The first step
filter: "someFilter",
subtasks: true,
},
solution: {
commits: ["1gfedcba", "987654321"],
commands: ["npm install"],
files: ["someFile.js"],
},
},
],
},
Expand Down