1.0.0 • Published 1 year ago
@ni/jasmine-parameterized v1.0.0
Jasmine Parameterized
The @ni/jasmine-parameterized library provides utility functions for writing Jasmine parameterized tests.
Getting Started
Install in your app's devDependencies:
npm install -D @ni/jasmine-parameterizedUsing parameterizeSpec
Use parameterizeSpec to create a parameterized test using an array of tests with names.
In the following example:
- the test named
cats-and-dogsis focused for debugging - the test named
frogsis configured to always be disabled - the test named
menwill run normally as it has no override
import { parameterizeSpec } from '@ni/jasmine-parameterized';
const rainTests = [
{ name: 'cats-and-dogs', type: 'idiom' },
{ name: 'frogs', type: 'idiom'},
{ name: 'men', type: 'lyrics'}
] as const;
describe('Different rains', () => {
parameterizeSpec(rainTests, (spec, name, value) => {
spec(`of type ${name} exist`, () => {
expect(value.type).toBeDefined();
});
}, {
'cats-and-dogs': fit,
frogs: xit
});
});Using parameterizeSuite
Use parameterizeSuite to create a parameterized test suite using an array of test scenarios with names.
In the following example:
- the suite named
cats-and-dogsis focused for debugging - the suite named
frogsis configured to always be disabled - the suite named
menwill run normally as it has no override
import { parameterizeSuite } from '@ni/jasmine-parameterized';
const rainTests = [
{ name: 'cats-and-dogs', type: 'idiom' },
{ name: 'frogs' type: 'idiom'},
{ name: 'men', type: 'lyrics'}
] as const;
parameterizeSuite(rainTests, (suite, name, value) => {
suite(`with ${name}`, () => {
it('expect type to be defined', () => {
expect(value.type).toBeDefined();
});
it('expect type to have a non-zero length', () => {
const length = value.type.length;
expect(length).toBeGreaterThan(0);
});
});
}, {
'cats-and-dogs': fdescribe,
frogs: xdescribe
});Contributing
See Getting Started in CONTRIBUTING.md.