storybook/docs/snippets/angular/before-each-in-meta-mock-date.ts.mdx
2024-04-30 22:21:31 -06:00

31 lines
703 B
Plaintext

```ts
// Page.stories.ts
import { Meta, StoryObj } from '@storybook/angular';
import MockDate from 'mockdate';
// 👇 Must use this import path to have mocks typed correctly
import { getUserFromSession } from '#api/session.mock';
import { Page } from './Page';
const meta: Meta<Page> = {
component: Page,
// 👇 Set the value of Date for every story in the file
async beforeEach() {
MockDate.set('2024-02-14');
// 👇 Reset the Date after each story
return () => {
MockDate.reset();
};
},
};
export default meta;
type Story = StoryObj<Page>;
export const Default: Story = {
async play({ canvasElement }) {
// ... This will run with the mocked Date
},
};
```