mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:21:06 +08:00
31 lines
703 B
Plaintext
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
|
|
},
|
|
};
|
|
``` |