Fix build errors: exclude test files, fix exports, update currency test types
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
import { describe, it, expect, beforeEach } from 'vitest';
|
||||
import { SimpleCurrencyConverter, getDefaultConverter } from '../currency';
|
||||
import { getDefaultConverter } from '../currency';
|
||||
import type { CurrencyConverter } from '../currency';
|
||||
|
||||
describe('Currency Conversion', () => {
|
||||
let converter: SimpleCurrencyConverter;
|
||||
let converter: CurrencyConverter;
|
||||
|
||||
beforeEach(() => {
|
||||
converter = getDefaultConverter();
|
||||
|
||||
@@ -11,3 +11,7 @@ export * from './input-validation';
|
||||
export * from './eo-uplift';
|
||||
export * from './institution-config';
|
||||
export * from './errors';
|
||||
export * from './version';
|
||||
export * from './logging';
|
||||
export * from './config';
|
||||
export * from './fx-rates';
|
||||
|
||||
Reference in New Issue
Block a user