Fix Alpaca tests and exports

This commit is contained in:
Carter Bertolini 2023-10-27 16:48:15 -04:00
parent 38be49e9cb
commit ab23fb7145
2 changed files with 5 additions and 1 deletions

View File

@ -2,3 +2,7 @@ export * from './interface/exchange';
export * from './interface/portfolio'; export * from './interface/portfolio';
export * from './interface/quote'; export * from './interface/quote';
export * from './interface/actions'; export * from './interface/actions';
export * from './alpaca/exchange';
export * from './alpaca/portfolio';
export * from './alpaca/quote';

View File

@ -1,6 +1,6 @@
import { describe, expect, test } from '@jest/globals'; import { describe, expect, test } from '@jest/globals';
import 'dotenv/config'; import 'dotenv/config';
import { AlpacaExchange } from '../src/alpaca/exchange'; import { AlpacaExchange } from '../src/index';
describe('Alpaca Tests', () => { describe('Alpaca Tests', () => {
test('portfolio fetch', () => { test('portfolio fetch', () => {