Improve English grammar in test descriptions

- Fix typo
- use gender neutral pronoun
- fix third-person conjugation
This commit is contained in:
mattwr18 2019-09-09 09:06:49 +02:00 committed by roschaefer
parent b656b5aeb9
commit 77eb8274f3
2 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ describe('slugifyMiddleware', () => {
}
})
describe('given a user has siged up with her email address', () => {
describe('given a user has signed up with their email address', () => {
beforeEach(async () => {
await factory.create('EmailAddress', {
email: '123@example.org',

View File

@ -425,7 +425,7 @@ describe('SignupVerification', () => {
expect(emails).toHaveLength(1)
})
it('set `about` attribute of User', async () => {
it('sets `about` attribute of User', async () => {
variables = { ...variables, about: 'Find this description in the user profile' }
await mutate({ mutation, variables })
const user = await neode.first('User', { name: 'John Doe' })