Skip to content

Commit 7f15e01

Browse files
committed
Fixed test URLs to match renames in graphql-js
1 parent 909287e commit 7f15e01

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

site/docs/Walkthrough-Introspection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ queries it supports. GraphQL allows us to do so using the introspection
1111
system!
1212

1313
For our Star Wars example, the file
14-
[starWarsIntrospectionTests.js](https://github.com/graphql/graphql-js/blob/master/src/__tests__/starWarsIntrospectionTests.js)
14+
[starWarsIntrospection-test.js](https://github.com/graphql/graphql-js/blob/master/src/__tests__/starWarsIntrospection-test.js)
1515
contains a number of queries demonstrating the introspection system, and is a
1616
test file that can be run to exercise the reference implementation's
1717
introspection system.

site/docs/Walkthrough-Queries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ GraphQL queries declaratively describe what data the issuer wishes
1010
to fetch from whoever is fulfilling the GraphQL query.
1111

1212
For our Star Wars example, the
13-
[starWarsQueryTests.js](https://github.com/graphql/graphql-js/blob/master/src/__tests__/starWarsQueryTests.js)
13+
[starWarsQuery-test.js](https://github.com/graphql/graphql-js/blob/master/src/__tests__/starWarsQuery-test.js)
1414
file in the GraphQL.js repository contains a number of queries and responses.
1515
That file is a test file that uses the schema discussed in the "Type System" walkthrough and a set of
1616
sample data, located in

site/docs/Walkthrough-Validation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ developers when an invalid query has been created, without having to rely
1212
on runtime checks.
1313

1414
For our Star Wars example, the file
15-
[starWarsValidationTests.js](https://github.com/graphql/graphql-js/blob/master/src/__tests__/starWarsValidationTests.js)
15+
[starWarsValidation-test.js](https://github.com/graphql/graphql-js/blob/master/src/__tests__/starWarsValidation-test.js)
1616
contains a number of queries demonstrating various invalidities, and is a test
1717
file that can be run to exercise the reference implementation's validator.
1818

0 commit comments

Comments
 (0)