PATCH some TS problems in storyshots

This commit is contained in:
Norbert de Langen 2020-01-31 00:39:32 +01:00
parent d8c3ac81f2
commit 20fa8ef8a9
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
4 changed files with 392 additions and 464 deletions

View File

@ -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"

View File

@ -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;

View File

@ -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);
});
});

842
yarn.lock

File diff suppressed because it is too large Load Diff