Skip to content

Commit 5460ae5

Browse files
committed
Fix tests
1 parent 28ace28 commit 5460ae5

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

eslint.config.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ export default tsConfig(
2121
'npmDist',
2222
'npmEsmDist',
2323
'denoDist',
24-
'website/.next',
25-
'website/out',
24+
'website',
2625
'integrationTests/ts/*.ts',
2726
],
2827
},

src/execution/__tests__/executor-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1441,7 +1441,7 @@ describe('Execute: Handles basic execution tasks', () => {
14411441
errors: [
14421442
{
14431443
message:
1444-
'Variable "$data" got invalid value { email: "", wrongArg: "wrong", wrongArg2: "wrong", wrongArg3: "wrong" }; Field "wrongArg" is not defined by type "User".',
1444+
'Variable "$data" has invalid value: Expected value of type "User" not to include unknown field "wrongArg", found: { email: "", wrongArg: "wrong", wrongArg2: "wrong", wrongArg3: "wrong" }.',
14451445
locations: [{ line: 2, column: 17 }],
14461446
},
14471447
{

0 commit comments

Comments
 (0)