Skip to content

Commit

Permalink
Merge pull request #105 from nearform/fix/remove_js_suffix
Browse files Browse the repository at this point in the history
fix: remove .js suffix on import
  • Loading branch information
Ademsk1 authored Oct 19, 2023
2 parents bfa3c1f + 468458a commit 05a944d
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 05a944d

Please sign in to comment.