feat: Added Malawi kwacha to currency list (#12440)
* Add Malawi kwacha currency * fix failing currency tests --------- Co-authored-by: Stevche Radevski <sradevski@live.com>
This commit is contained in:
co-authored by
Stevche Radevski
parent
2c2528a087
commit
1797f0298b
+3
-3
@@ -86,7 +86,7 @@ moduleIntegrationTestRunner<ICurrencyModuleService>({
|
||||
const [currenciesResult, count] =
|
||||
await service.listAndCountCurrencies({}, {})
|
||||
|
||||
expect(count).toEqual(120)
|
||||
expect(count).toEqual(121)
|
||||
expect(currenciesResult).toEqual(
|
||||
expect.arrayContaining([
|
||||
expect.objectContaining({
|
||||
@@ -123,7 +123,7 @@ moduleIntegrationTestRunner<ICurrencyModuleService>({
|
||||
const [currenciesResult, count] =
|
||||
await service.listAndCountCurrencies({}, { skip: 5, take: 1 })
|
||||
|
||||
expect(count).toEqual(120)
|
||||
expect(count).toEqual(121)
|
||||
expect(currenciesResult).toEqual([
|
||||
expect.objectContaining({
|
||||
code: "aud",
|
||||
@@ -144,7 +144,7 @@ moduleIntegrationTestRunner<ICurrencyModuleService>({
|
||||
|
||||
const serialized = JSON.parse(JSON.stringify(currenciesResult))
|
||||
|
||||
expect(count).toEqual(120)
|
||||
expect(count).toEqual(121)
|
||||
expect(serialized).toEqual([
|
||||
{
|
||||
code: "aed",
|
||||
|
||||
Reference in New Issue
Block a user