Skip to content

Commit

Permalink
Change description seededTests
Browse files Browse the repository at this point in the history
  • Loading branch information
pladreyt committed Jan 3, 2023
1 parent ee17b37 commit 1b94d0d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
24 changes: 12 additions & 12 deletions test/__snapshots__/string.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ exports[`string > 42 > binary > with custom prefix 1`] = `"bin_0"`;

exports[`string > 42 > binary > with length 1`] = `"0x011011"`;

exports[`string > 42 > binary > with length range 1`] = `"0x11011110000001"`;
exports[`string > 42 > binary > with length and empty prefix 1`] = `"0110111"`;

exports[`string > 42 > binary > with length, casing and empty prefix 1`] = `"0110111"`;
exports[`string > 42 > binary > with length range 1`] = `"0x11011110000001"`;

exports[`string > 42 > hexadecimal > noArgs 1`] = `"0x8"`;

Expand Down Expand Up @@ -106,9 +106,9 @@ exports[`string > 42 > octal > with custom prefix 1`] = `"oct_2"`;

exports[`string > 42 > octal > with length 1`] = `"0x267156"`;

exports[`string > 42 > octal > with length range 1`] = `"0x67156441310036"`;
exports[`string > 42 > octal > with length and empty prefix 1`] = `"2671564"`;

exports[`string > 42 > octal > with length, casing and empty prefix 1`] = `"2671564"`;
exports[`string > 42 > octal > with length range 1`] = `"0x67156441310036"`;

exports[`string > 42 > sample > noArgs 1`] = `"Cky2eiXX/J"`;

Expand Down Expand Up @@ -206,9 +206,9 @@ exports[`string > 1211 > binary > with custom prefix 1`] = `"bin_1"`;
exports[`string > 1211 > binary > with length 1`] = `"0x101100"`;
exports[`string > 1211 > binary > with length range 1`] = `"0x01100101010100011101"`;
exports[`string > 1211 > binary > with length and empty prefix 1`] = `"1011001"`;
exports[`string > 1211 > binary > with length, casing and empty prefix 1`] = `"1011001"`;
exports[`string > 1211 > binary > with length range 1`] = `"0x01100101010100011101"`;
exports[`string > 1211 > hexadecimal > noArgs 1`] = `"0xE"`;
Expand Down Expand Up @@ -254,9 +254,9 @@ exports[`string > 1211 > octal > with custom prefix 1`] = `"oct_7"`;
exports[`string > 1211 > octal > with length 1`] = `"0x737611"`;
exports[`string > 1211 > octal > with length range 1`] = `"0x37611705151632155606"`;
exports[`string > 1211 > octal > with length and empty prefix 1`] = `"7376117"`;
exports[`string > 1211 > octal > with length, casing and empty prefix 1`] = `"7376117"`;
exports[`string > 1211 > octal > with length range 1`] = `"0x37611705151632155606"`;
exports[`string > 1211 > sample > noArgs 1`] = `"wKti5-}$_/"`;
Expand Down Expand Up @@ -354,9 +354,9 @@ exports[`string > 1337 > binary > with custom prefix 1`] = `"bin_0"`;
exports[`string > 1337 > binary > with length 1`] = `"0x010001"`;
exports[`string > 1337 > binary > with length range 1`] = `"0x100010000110"`;
exports[`string > 1337 > binary > with length and empty prefix 1`] = `"0100010"`;
exports[`string > 1337 > binary > with length, casing and empty prefix 1`] = `"0100010"`;
exports[`string > 1337 > binary > with length range 1`] = `"0x100010000110"`;
exports[`string > 1337 > hexadecimal > noArgs 1`] = `"0x5"`;
Expand Down Expand Up @@ -402,9 +402,9 @@ exports[`string > 1337 > octal > with custom prefix 1`] = `"oct_2"`;
exports[`string > 1337 > octal > with length 1`] = `"0x241124"`;
exports[`string > 1337 > octal > with length range 1`] = `"0x411243021442"`;
exports[`string > 1337 > octal > with length and empty prefix 1`] = `"2411243"`;
exports[`string > 1337 > octal > with length, casing and empty prefix 1`] = `"2411243"`;
exports[`string > 1337 > octal > with length range 1`] = `"0x411243021442"`;
exports[`string > 1337 > sample > noArgs 1`] = `"9U/4:SK$>6"`;
Expand Down
4 changes: 2 additions & 2 deletions test/string.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ describe('string', () => {
.it('with length', { length: 6 })
.it('with length range', { length: { min: 10, max: 20 } })
.it('with custom prefix', { prefix: 'bin_' })
.it('with length, casing and empty prefix', {
.it('with length and empty prefix', {
length: 7,
prefix: '',
});
Expand All @@ -55,7 +55,7 @@ describe('string', () => {
.it('with length', { length: 6 })
.it('with length range', { length: { min: 10, max: 20 } })
.it('with custom prefix', { prefix: 'oct_' })
.it('with length, casing and empty prefix', {
.it('with length and empty prefix', {
length: 7,
prefix: '',
});
Expand Down

0 comments on commit 1b94d0d

Please sign in to comment.