Skip to content

Commit

Permalink
fix: remove .js suffix on import
Browse files Browse the repository at this point in the history
  • Loading branch information
Ademsk1 committed Oct 19, 2023
1 parent bfa3c1f commit 468458a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import type {
PlaywrightWorkerArgs,
PlaywrightWorkerOptions
} from '@playwright/test'
import { Authentication } from './plugin/Authentication.js'
import { Authentication } from './plugin/Authentication'

export type Credentials = {
auth: Authentication
Expand Down
2 changes: 1 addition & 1 deletion plugin/Authentication.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { FirebaseApp, FirebaseOptions } from 'firebase/app'
import type { Auth, User } from 'firebase/auth'
import type { Page } from '@playwright/test'

import { addFirebaseScript, getToken } from './auth.setup.js'
import { addFirebaseScript, getToken } from './auth.setup'

// Since these are declared in browser modules, it's hard to understand what the types should be.
// As such we're defining what shape we're expecting.
Expand Down

0 comments on commit 468458a

Please sign in to comment.