Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
it('should exist', () => {
expect(
isTestkitExists(
12,
counterBadgeTestkitFactory
)
).toBe(true);
});
});
it('should exist', () => {
expect(isTestkitExists(Hello World, headingTestkitFactory)).toBe(true);
});
});
it('should exist', () => {
expect(
isTestkitExists(<input>, inputTestkitFactory, {
dataHookPropName: 'data-hook',
}),
).toBe(true);
});
});
it('should exist', () => {
expect(isTestkitExists(Hello World,
fullTextViewTestkitFactory)).toBe(true);
});
});
it('should exist', () => {
expect(isTestkitExists(12, counterBadgeTestkitFactory)).toBe(true);
});
});
it('should exist', () => {
expect(isTestkitExists(<label>Hello World</label>, labelTestkitFactory)).toBe(true);
});
});
it('should exist', () => {
expect(isTestkitExists(, likeButtonTestkitFactory)).toBe(
true,
);
});
});