Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
briantu committed Dec 3, 2024
1 parent 62f753a commit 0d8068c
Showing 1 changed file with 49 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,30 @@ describe('toGraphQueryItems', () => {
inputs: [],
name: 'a',
outputs: [{dependedBy: [{solid: {name: 'b[1]'}}, {solid: {name: 'b[?]'}}]}],
metadata: {
attempts: [],
markers: [],
state: 'succeeded',
transitions: [],
},
},
{
inputs: [{dependsOn: [{solid: {name: 'a'}}]}],
name: 'b[1]',
outputs: [],
metadata: {
attempts: [],
markers: [],
state: 'succeeded',
transitions: [],
},
},
{
inputs: [{dependsOn: [{solid: {name: 'a'}}]}],
name: 'b[?]',
outputs: [],
metadata: undefined,
},
{inputs: [{dependsOn: [{solid: {name: 'a'}}]}], name: 'b[1]', outputs: []},
{inputs: [{dependsOn: [{solid: {name: 'a'}}]}], name: 'b[?]', outputs: []},
]);
});

Expand Down Expand Up @@ -129,6 +150,12 @@ describe('toGraphQueryItems', () => {
],
},
],
metadata: {
attempts: [],
markers: [],
state: 'succeeded',
transitions: [],
},
},
{
inputs: [
Expand All @@ -154,6 +181,12 @@ describe('toGraphQueryItems', () => {
],
},
],
metadata: {
attempts: [],
markers: [],
state: 'succeeded',
transitions: [],
},
},
{
inputs: [
Expand All @@ -169,6 +202,12 @@ describe('toGraphQueryItems', () => {
],
name: 'b[2]',
outputs: [],
metadata: {
attempts: [],
markers: [],
state: 'succeeded',
transitions: [],
},
},
{
inputs: [
Expand All @@ -194,6 +233,7 @@ describe('toGraphQueryItems', () => {
],
},
],
metadata: undefined,
},
{
inputs: [
Expand All @@ -209,6 +249,12 @@ describe('toGraphQueryItems', () => {
],
name: 'c[1]',
outputs: [],
metadata: {
attempts: [],
markers: [],
state: 'succeeded',
transitions: [],
},
},
{
inputs: [
Expand All @@ -224,6 +270,7 @@ describe('toGraphQueryItems', () => {
],
name: 'c[?]',
outputs: [],
metadata: undefined,
},
]);
});
Expand Down

0 comments on commit 0d8068c

Please sign in to comment.