Skip to content

Commit

Permalink
style: fix prettier error
Browse files Browse the repository at this point in the history
  • Loading branch information
genaris committed Jan 27, 2023
1 parent 0cdd143 commit bb59336
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions test/mediasharing.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
import { agentDependencies } from '@aries-framework/node'
import { Agent, ConnectionRecord, ConsoleLogger, EncryptedMessage, JsonTransformer, LogLevel } from '@aries-framework/core'
import {
Agent,
ConnectionRecord,
ConsoleLogger,
EncryptedMessage,
JsonTransformer,
LogLevel,
} from '@aries-framework/core'
import { v4 as uuid } from 'uuid'
import { firstValueFrom, ReplaySubject, Subject } from 'rxjs'
import { MediaSharingModule } from '../src/MediaSharingModule'
Expand Down Expand Up @@ -150,7 +157,7 @@ describe('media test', () => {
expect(recordFromRepo).toBeDefined()
expect(recordFromRepo!.items?.length).toBe(1)

const item = recordFromRepo!.items![0]
const item = recordFromRepo!.items![0]
expect(item.mimeType).toBe('image/png')
expect(item.uri).toBe('http://blabla')
expect(item.metadata!.duration).toBe(14)
Expand Down

0 comments on commit bb59336

Please sign in to comment.