chore: fix typos (#4877)
* Chore: Fix typos * Add generated resources --------- Co-authored-by: Shahed Nasser <shahednasser@gmail.com>
This commit is contained in:
co-authored by
Shahed Nasser
parent
359bd290ba
commit
a0bbc1893b
+1
-1
@@ -1,6 +1,6 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`ShopifyProductService normalizeProduct_ succesfully normalizes a product from Shopify 1`] = `
|
||||
exports[`ShopifyProductService normalizeProduct_ successfully normalizes a product from Shopify 1`] = `
|
||||
Object {
|
||||
"description": "<p>It's the small iPod with one very big idea: Video. Now the world's most popular music player, available in 4GB and 8GB models, lets you enjoy TV shows, movies, video podcasts, and more. The larger, brighter display means amazing picture quality. In six eye-catching colors, iPod nano is stunning all around. And with models starting at just $149, little speaks volumes.</p>",
|
||||
"external_id": "shopify_ipod",
|
||||
|
||||
@@ -18,7 +18,7 @@ describe("ShopifyProductService", () => {
|
||||
jest.clearAllMocks()
|
||||
})
|
||||
|
||||
it("succesfully normalizes a product from Shopify", async () => {
|
||||
it("successfully normalizes a product from Shopify", async () => {
|
||||
const data = await ShopifyClientServiceMock.get({ path: "products/ipod" })
|
||||
|
||||
const normalized = shopifyProductService.normalizeProduct_(data)
|
||||
@@ -41,7 +41,7 @@ describe("ShopifyProductService", () => {
|
||||
jest.clearAllMocks()
|
||||
})
|
||||
|
||||
it("succesfully creates a product from Shopify", async () => {
|
||||
it("successfully creates a product from Shopify", async () => {
|
||||
const data = shopifyProducts.new_ipod
|
||||
|
||||
const product = await shopifyProductService.create(data)
|
||||
|
||||
Reference in New Issue
Block a user