mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 02:31:07 +08:00
PATCH some TS problems in storyshots
This commit is contained in:
parent
d8c3ac81f2
commit
20fa8ef8a9
@ -43,6 +43,7 @@
|
||||
"glob": "^7.1.3",
|
||||
"global": "^4.3.2",
|
||||
"jest-specific-snapshot": "^2.0.0",
|
||||
"pretty-format": "^25.1.0",
|
||||
"read-pkg-up": "^7.0.0",
|
||||
"regenerator-runtime": "^0.13.3",
|
||||
"ts-dedent": "^1.1.1"
|
||||
|
@ -25,6 +25,7 @@ function getIntegrityOptions({ integrityOptions }: StoryshotsOptions) {
|
||||
};
|
||||
}
|
||||
|
||||
// @ts-ignore
|
||||
function ensureOptionsDefaults(options: StoryshotsOptions) {
|
||||
const {
|
||||
suite = 'Storyshots',
|
||||
@ -49,7 +50,7 @@ function ensureOptionsDefaults(options: StoryshotsOptions) {
|
||||
testMethod,
|
||||
snapshotSerializers,
|
||||
integrityOptions,
|
||||
};
|
||||
} as any;
|
||||
}
|
||||
|
||||
export default ensureOptionsDefaults;
|
||||
|
@ -4,15 +4,6 @@ import glob from 'glob';
|
||||
import { describe, it } from 'global';
|
||||
import dedent from 'ts-dedent';
|
||||
|
||||
declare global {
|
||||
// eslint-disable-next-line @typescript-eslint/no-namespace,no-redeclare
|
||||
namespace jest {
|
||||
interface Matchers<R, T> {
|
||||
notToBeAbandoned(stories2snapsConverter: any): R;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
expect.extend({
|
||||
notToBeAbandoned(storyshots, stories2snapsConverter) {
|
||||
const abandonedStoryshots = storyshots.filter((fileName: string) => {
|
||||
@ -59,6 +50,7 @@ function integrityTest(integrityOptions: any, stories2snapsConverter: any) {
|
||||
const snapshotExtension = stories2snapsConverter.getSnapshotExtension();
|
||||
const storyshots = glob.sync(`**/*${snapshotExtension}`, integrityOptions);
|
||||
|
||||
// @ts-ignore
|
||||
expect(storyshots).notToBeAbandoned(stories2snapsConverter);
|
||||
});
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user