From c7bf1ef043ec02b705a2ac5d589b2209dd804b3c Mon Sep 17 00:00:00 2001 From: David Corbitt Date: Tue, 18 Jan 2022 17:54:36 -0700 Subject: [PATCH] npx @redwoodjs/codemods@latest update-cell-mocks --- .../BlogPostCell/BlogPostCell.mock.js | 18 +++++----- .../BlogPostsCell/BlogPostsCell.mock.js | 34 ++++++++++--------- 2 files changed, 28 insertions(+), 24 deletions(-) diff --git a/web/src/components/BlogPostCell/BlogPostCell.mock.js b/web/src/components/BlogPostCell/BlogPostCell.mock.js index 3111f4b..fc10a6b 100644 --- a/web/src/components/BlogPostCell/BlogPostCell.mock.js +++ b/web/src/components/BlogPostCell/BlogPostCell.mock.js @@ -1,9 +1,11 @@ // Define your own mock data here: -export const standard = (/* vars, { ctx, req } */) => ({ - post: { - id: 1, - title: 'First Post', - body: `Neutra tacos hot chicken prism raw denim, put a bird on it enamel pin post-ironic vape cred DIY. Street art next level umami squid. Hammock hexagon glossier 8-bit banjo. Neutra la croix mixtape echo park four loko semiotics kitsch forage chambray. Semiotics salvia selfies jianbing hella shaman. Letterpress helvetica vaporware cronut, shaman butcher YOLO poke fixie hoodie gentrify woke heirloom.`, - createdAt: '2020-01-01T12:34:56Z', - }, -}) +export const standard = () => { + return { + post: { + id: 1, + title: 'First Post', + body: `Neutra tacos hot chicken prism raw denim, put a bird on it enamel pin post-ironic vape cred DIY. Street art next level umami squid. Hammock hexagon glossier 8-bit banjo. Neutra la croix mixtape echo park four loko semiotics kitsch forage chambray. Semiotics salvia selfies jianbing hella shaman. Letterpress helvetica vaporware cronut, shaman butcher YOLO poke fixie hoodie gentrify woke heirloom.`, + createdAt: '2020-01-01T12:34:56Z', + }, + }; +}; diff --git a/web/src/components/BlogPostsCell/BlogPostsCell.mock.js b/web/src/components/BlogPostsCell/BlogPostsCell.mock.js index ee70d7e..3af5579 100644 --- a/web/src/components/BlogPostsCell/BlogPostsCell.mock.js +++ b/web/src/components/BlogPostsCell/BlogPostsCell.mock.js @@ -1,17 +1,19 @@ // Define your own mock data here: -export const standard = (/* vars, { ctx, req } */) => ({ - posts: [ - { - id: 1, - title: 'First Post', - body: `Neutra tacos hot chicken prism raw denim, put a bird on it enamel pin post-ironic vape cred DIY. Street art next level umami squid. Hammock hexagon glossier 8-bit banjo. Neutra la croix mixtape echo park four loko semiotics kitsch forage chambray. Semiotics salvia selfies jianbing hella shaman. Letterpress helvetica vaporware cronut, shaman butcher YOLO poke fixie hoodie gentrify woke heirloom.`, - createdAt: '2020-01-01T12:34:56Z', - }, - { - id: 2, - title: 'Second Post', - body: `Master cleanse gentrify irony put a bird on it hexagon enamel pin. Pop-up man braid artisan pug tilde synth lo-fi. Ethical tofu portland keytar waistcoat. Pabst authentic hammock chillwave twee trust fund. Lyft humblebrag ramps irony unicorn.`, - createdAt: '2020-01-01T12:34:56Z', - }, - ], -}) +export const standard = () => { + return { + posts: [ + { + id: 1, + title: 'First Post', + body: `Neutra tacos hot chicken prism raw denim, put a bird on it enamel pin post-ironic vape cred DIY. Street art next level umami squid. Hammock hexagon glossier 8-bit banjo. Neutra la croix mixtape echo park four loko semiotics kitsch forage chambray. Semiotics salvia selfies jianbing hella shaman. Letterpress helvetica vaporware cronut, shaman butcher YOLO poke fixie hoodie gentrify woke heirloom.`, + createdAt: '2020-01-01T12:34:56Z', + }, + { + id: 2, + title: 'Second Post', + body: `Master cleanse gentrify irony put a bird on it hexagon enamel pin. Pop-up man braid artisan pug tilde synth lo-fi. Ethical tofu portland keytar waistcoat. Pabst authentic hammock chillwave twee trust fund. Lyft humblebrag ramps irony unicorn.`, + createdAt: '2020-01-01T12:34:56Z', + }, + ], + }; +};