mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
681 B
25 lines
681 B
5 years ago
|
export const tests = []
|
||
|
const t = (f) => tests.push(f)
|
||
|
t(({ eq }) =>
|
||
|
eq(groupPrice('The price of the cereals is $4.00.'), [['$4.00', '4', '00']]),
|
||
|
)
|
||
|
t(({ eq }) =>
|
||
|
eq(groupPrice('the total is USD19.98'), [['USD19.98', '19', '98']]),
|
||
|
)
|
||
|
t(({ eq }) =>
|
||
|
eq(groupPrice('excuse me sir it is missing $0.45'), [['$0.45', '0', '45']]),
|
||
|
)
|
||
|
t(({ eq }) =>
|
||
|
eq(groupPrice('excuse me sir here is your change $99.20'), [
|
||
|
['$99.20', '99', '20'],
|
||
|
]),
|
||
|
)
|
||
|
t(({ eq }) => eq(groupPrice('this, 0.32, is not a match'), []))
|
||
|
t(({ eq }) =>
|
||
|
eq(groupPrice('product one its $9.98 and the second one its $10.20'), [
|
||
|
['$9.98', '9', '98'],
|
||
|
['$10.20', '10', '20'],
|
||
|
]),
|
||
|
)
|
||
|
Object.freeze(tests)
|