Skip to content

Commit 829ff84

Browse files
fixes for 8.14 examples
1 parent 4f04b1d commit 829ff84

File tree

4 files changed

+36
-2
lines changed

4 files changed

+36
-2
lines changed

.husky/pre-commit

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
npm run lint
2-
npm run prettier
1+
npm run fix:precommit

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"fix": "npm run fix:lint && npm run fix:prettier",
2323
"fix:lint": "eslint src tests --fix",
2424
"fix:prettier": "prettier \"src/**/*.ts\" \"tests/**/*.ts\" --write",
25+
"fix:precommit": "./scripts/precommit.sh",
2526
"watch:build": "tsc -w",
2627
"watch:test": "jest --test-path-ignore-patterns integration --coverage --watch",
2728
"prepare": "husky"

scripts/precommit.sh

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash -e
2+
npm run fix:lint
3+
npm run fix:prettier
4+
git add $(git diff --cached --name-only --diff-filter=ACM)

tests/integration/skip.ts

+30
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ const skip: Record<string, SkippedTest> = {
1010
d69bd36335774c8ae1286cee21310241: {
1111
reason: "example references a non-existant `remote_indices` body attribute",
1212
},
13+
"0b8fa90bc9aeeadb420ad785bd0b9953": {
14+
reason: "example references a non-existant `remote_indices` body attribute",
15+
},
1316
b24a374c0ad264abbcacb5686f5ed61c: {
1417
reason: "example puts attributes in body, spec says they go in query",
1518
formats: ["python"],
@@ -315,6 +318,33 @@ const skip: Record<string, SkippedTest> = {
315318
"166bcfc6d5d39defec7ad6aa44d0914b[2]": {
316319
reason: "example uses undefined `nodes` query attribute",
317320
},
321+
"9b68748c061b768c0153c1f2508ce207": {
322+
reason: "example uses bad format for comments",
323+
},
324+
a3464bd6f0a61623562162859566b078: {
325+
reason: "example uses bad format for comments",
326+
},
327+
"902cfd5aeec2f65b3adf55f5e38b21f0": {
328+
reason: "example uses bad format for comments",
329+
},
330+
f749efe8f11ebd43ef83db91922c736e: {
331+
reason: "example uses bad format for comments",
332+
},
333+
c79b284fa7a5d7421c6daae62bc697f9: {
334+
reason: "example uses bad format for comments",
335+
},
336+
"691fe20d467324ed43a36fd15852c492": {
337+
reason: "example uses bad format for comments",
338+
},
339+
"8d6631b622f9bfb8fa70154f6fb8b153": {
340+
reason: "example uses bad format for comments",
341+
},
342+
"0a3003fa5af850e415634b50b1029859": {
343+
reason: "example uses bad format for comments",
344+
},
345+
"083e514297c09e91211f0d168aef1b0b": {
346+
reason: "example uses bad format for comments",
347+
},
318348
};
319349

320350
export function shouldBeSkipped(

0 commit comments

Comments
 (0)