@palmares/tests
Version:
This defines a default test framework testing stuff inside of the framework
9 lines • 462 B
TypeScript
import type { TestAdapter } from './adapter';
import type { testDomainModifier } from './domain';
import type { Domain, ExtractModifierArguments, SettingsType2 } from '@palmares/core';
export type AllTestsSettingsType = SettingsType2 & TestsSettingsType;
export type TestsSettingsType = {
testAdapter: typeof TestAdapter;
};
export type TestDomain = Domain & Partial<ExtractModifierArguments<[typeof testDomainModifier]>>;
//# sourceMappingURL=types.d.ts.map