Skip to content

Commit

Permalink
fix template
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Mar 18, 2023
1 parent d57c1de commit 27a1dff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ expect.extend(matchers)
// Initialize htm with Preact
const html = htm.bind(h);
<% } %>
import ExampleComponent from './Component.js'
import ExampleComponent from './Component'

describe('Preact Component Tests', () => {
<% if (installTestingLibrary) { %>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { expect, $ } from '@wdio/globals'
import * as matchers from '@testing-library/jest-dom/matchers'
expect.extend(matchers)
<% } %>
import ExampleComponent from './Component.js'
import ExampleComponent from './Component'

describe('React Component Tests', () => {
<% if (installTestingLibrary) { %>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { expect, $ } from '@wdio/globals'
import * as matchers from '@testing-library/jest-dom/matchers'
expect.extend(matchers)
<% } %>
import ExampleComponent from './Component.js'
import ExampleComponent from './Component'

describe('Preact Component Tests', () => {
<% if (installTestingLibrary) { %>
Expand Down

0 comments on commit 27a1dff

Please sign in to comment.