Skip to content

Commit

Permalink
chore: Fix a few spelling mistakes in a-s-testsuite.
Browse files Browse the repository at this point in the history
  • Loading branch information
abernix committed Dec 27, 2019
1 parent 6a36429 commit 9242738
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1540,7 +1540,7 @@ export function testApolloServer<AS extends ApolloServerBase>(
});
});

it('propogates error codes in production', async () => {
it('propagates error codes in production', async () => {
const nodeEnv = process.env.NODE_ENV;
process.env.NODE_ENV = 'production';

Expand Down Expand Up @@ -1573,7 +1573,7 @@ export function testApolloServer<AS extends ApolloServerBase>(
process.env.NODE_ENV = nodeEnv;
});

it('propogates error codes with null response in production', async () => {
it('propagates error codes with null response in production', async () => {
const nodeEnv = process.env.NODE_ENV;
process.env.NODE_ENV = 'production';

Expand Down Expand Up @@ -1769,7 +1769,7 @@ export function testApolloServer<AS extends ApolloServerBase>(

// Unfortunately the error connection is not propagated to the
// observable. What should happen is we provide a default onError
// function that notifies the returned observable and can cursomize
// function that notifies the returned observable and can customize
// the behavior with an option in the client constructor. If you're
// available to make a PR to the following please do!
// https://github.com/apollographql/subscriptions-transport-ws/blob/master/src/client.ts
Expand Down

0 comments on commit 9242738

Please sign in to comment.