We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c6b53c5 + 3fc2e2c commit 14069d3Copy full SHA for 14069d3
test/utility/edgedb-setup.ts
@@ -18,7 +18,7 @@ export const ephemeralEdgeDB = async () => {
18
await db.execute(`create schema branch ${branch} from ${main}`);
19
20
const cleanup = async () => {
21
- await db.execute(`drop branch ${branch}`);
+ await db.execute(`drop branch ${branch} force`);
22
await db.close();
23
};
24
test/utility/expect-gql-error.ts
@@ -60,8 +60,8 @@ expect.extend({
60
!messagePassed
61
? stripIndent`
62
Message:
63
- ${this.utils.EXPECTED_COLOR(expectedObj.message)}
64
- ${this.utils.RECEIVED_COLOR(actualObj.message)}
+ ${this.utils.printExpected(expectedObj.message)}
+ ${this.utils.printReceived(actualObj.message)}
65
`.replace(/\n/g, '\n ')
66
: ''
67
}
0 commit comments