Skip to content

Commit e66351d

Browse files
author
abluchet
committed
fix local graphql tests (again)
1 parent b2c6f84 commit e66351d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

features/graphql/mutation.feature

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ Feature: GraphQL mutation support
2727
And the response should be in JSON
2828
And the header "Content-Type" should be equal to "application/json"
2929
And the JSON node "data.__type.fields[0].name" should contain "delete"
30-
And the JSON node "data.__type.fields[0].description" should match '/^Deletes a [A-z]+\.$/'
31-
And the JSON node "data.__type.fields[0].type.name" should match "/^delete[A-z]+Payload$/"
30+
And the JSON node "data.__type.fields[0].description" should match '/^Deletes a [A-z0-9]+\.$/'
31+
And the JSON node "data.__type.fields[0].type.name" should match "/^delete[A-z0-9]+Payload$/"
3232
And the JSON node "data.__type.fields[0].type.kind" should be equal to "OBJECT"
3333
And the JSON node "data.__type.fields[0].args[0].name" should be equal to "input"
34-
And the JSON node "data.__type.fields[0].args[0].type.name" should match "/^delete[A-z]+Input$/"
34+
And the JSON node "data.__type.fields[0].args[0].type.name" should match "/^delete[A-z0-9]+Input$/"
3535
And the JSON node "data.__type.fields[0].args[0].type.kind" should be equal to "INPUT_OBJECT"
3636

3737
Scenario: Create an item

0 commit comments

Comments
 (0)