Skip to content
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
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