We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8f344b commit 38e2c10Copy full SHA for 38e2c10
1 file changed
packages/project/test/util/version-workflow.test.ts
@@ -37,6 +37,10 @@ test('unique hash but different steps order', (t) => {
37
);
38
39
// different order of nodes (b & c changed position) but should generate the same hash
40
+ // validate second step is actually different
41
+ t.is(workflow1.steps[1].name, 'b')
42
+ t.is(workflow2.steps[1].name, 'c')
43
+ // assert that hashes are the same
44
t.is(generateHash(workflow1), generateHash(workflow2))
45
});
46
0 commit comments