Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ describe('preview store create service', () => {
expect(result).toEqual({
status: 'success',
message:
'Your Shopify store is ready. This store is temporary. Create a free Shopify account to save it and start selling.',
'Your Shopify store "Lavender Candles" is ready. This store is temporary. Create a free Shopify account to save it and start selling.',
store: {
id: '123',
name: 'Lavender Candles',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@ async function persistPreviewStoreSession(

return {
status: 'success',
message:
'Your Shopify store is ready. This store is temporary. Create a free Shopify account to save it and start selling.',
message: `Your Shopify store "${response.shop.name}" is ready. This store is temporary. Create a free Shopify account to save it and start selling.`,
store: {
id: response.shop.id,
name: response.shop.name,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ vi.mock('@shopify/cli-kit/node/ui', async () => {
const result = {
status: 'success' as const,
message:
'Your Shopify store is ready. This store is temporary. Create a free Shopify account to save it and start selling.',
'Your Shopify store "Lavender Candles" is ready. This store is temporary. Create a free Shopify account to save it and start selling.',
store: {
id: '123',
name: 'Lavender Candles',
Expand All @@ -34,7 +34,7 @@ describe('preview store create result presenter', () => {
{
status: 'success',
message:
'Your Shopify store is ready. This store is temporary. Create a free Shopify account to save it and start selling.',
'Your Shopify store "Lavender Candles" is ready. This store is temporary. Create a free Shopify account to save it and start selling.',
store: {
id: '123',
name: 'Lavender Candles',
Expand Down Expand Up @@ -62,13 +62,7 @@ describe('preview store create result presenter', () => {
headline: 'Store created',
customSections: [
{
body: {
tabularData: [['Name', 'Lavender Candles']],
firstColumnSubdued: true,
},
},
{
body: 'Your Shopify store is ready. This store is temporary. Create a free Shopify account to save it and start selling.',
body: 'Your Shopify store "Lavender Candles" is ready. This store is temporary. Create a free Shopify account to save it and start selling.',
},
{
title: 'Next steps',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,6 @@ function renderTextResult(result: CreatePreviewStoreResult): void {
// eslint-disable-next-line @shopify/cli/banner-headline-format
headline: 'Store created',
customSections: [
{
body: {
tabularData: [['Name', result.store.name]],
firstColumnSubdued: true,
},
},
{
body: result.message,
},
Expand Down
Loading