mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-08 15:05:22 +02:00
missed one
This commit is contained in:
parent
bc4ff9bd7f
commit
4b6a441c61
1 changed files with 2 additions and 3 deletions
|
@ -1,9 +1,8 @@
|
|||
// =====================================================
|
||||
// Keep these imports above the rest to avoid errors
|
||||
// =====================================================
|
||||
import type { SharedType } from '@maybe-finance/shared'
|
||||
import { TellerGenerator } from 'tools/generators'
|
||||
import type { AccountConnection, User } from '@prisma/client'
|
||||
import { AccountConnectionType, type User, type AccountConnection } from '@prisma/client'
|
||||
import prisma from '../lib/prisma'
|
||||
import { default as _teller } from '../lib/teller'
|
||||
import { resetUser } from './helpers/user.test-helper'
|
||||
|
@ -33,7 +32,7 @@ beforeEach(async () => {
|
|||
connection = await prisma.accountConnection.create({
|
||||
data: {
|
||||
name: 'Chase Test',
|
||||
type: 'teller' as SharedType.AccountConnectionType,
|
||||
type: AccountConnectionType.teller,
|
||||
tellerEnrollmentId: 'test-teller-item-workers',
|
||||
tellerInstitutionId: 'chase_test',
|
||||
tellerAccessToken:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue