Skip to content

Commit

Permalink
CI/CD consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
josephfusco committed May 17, 2024
1 parent eb62290 commit 2e15e53
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions tests/e2e/specs/editor-toolbar-buttons.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,19 +209,19 @@ describe('Toolbar Buttons', () => {
console.log('Merged Query:', codeMirrorValue);

// Verify that the query is now merged properly and formatted
// const expectedMergedQuery = `{
// viewer {
// name
// }
// }`;
const expectedMergedQueryFromTestsThatIsNotWhatWeGetInBrowserButItsTechnicallyStillValid = `{
... on RootQuery {
viewer {
name
}
const expectedMergedQuery = `{
viewer {
name
}
}`;
expect(codeMirrorValue).toBe(expectedMergedQueryFromTestsThatIsNotWhatWeGetInBrowserButItsTechnicallyStillValid);
// const expectedMergedQueryFromTestsThatIsNotWhatWeGetInBrowserButItsTechnicallyStillValid = `{
// ... on RootQuery {
// viewer {
// name
// }
// }
// }`;
expect(codeMirrorValue).toBe(expectedMergedQuery);
});


Expand Down

0 comments on commit 2e15e53

Please sign in to comment.