Skip to content

Fix typo on product type tests description #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix typo on product type tests description
  • Loading branch information
Victor Alfredo Duarte Gomez authored and Victor Alfredo Duarte Gomez committed Mar 29, 2020
commit 283589fc2bb9f6c56b750de0bb7ebee57cc2dc57
6 changes: 3 additions & 3 deletions src/types/product/__tests__/product.type.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ describe('Product schema', () => {
expect(product).toBeTruthy()
})

test('GamingPc type imeplements Product', () => {
test('GamingPc type implements Product', () => {
const type = schema.types.find(t => t.name === 'GamingPc')
expect(type).toBeTruthy()

Expand All @@ -216,7 +216,7 @@ describe('Product schema', () => {
expect(field.raw).toBe('Boolean!')
})

test('Bike type imeplements Product', () => {
test('Bike type implements Product', () => {
const type = schema.types.find(t => t.name === 'Bike')
expect(type).toBeTruthy()

Expand All @@ -230,7 +230,7 @@ describe('Product schema', () => {
expect(field.raw).toBe('BikeType!')
})

test('Drone type imeplements Product', () => {
test('Drone type implements Product', () => {
const type = schema.types.find(t => t.name === 'Drone')
expect(type).toBeTruthy()

Expand Down