Skip to content

Commit

Permalink
fix: import path for failing github action
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideMininni-Fincons authored and TomMenga committed Jan 10, 2024
1 parent 4999139 commit 9765aff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/teaser/teaser.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { TemplateResult } from 'lit';
import { html } from 'lit/static-html.js';

import { sbbSpread } from '../core/dom';
import images from '../core/images';

import placeholderImage from './stories/placeholder.png';
import type { SbbTeaserElement } from './teaser';
import './teaser';
import '../title';
Expand Down Expand Up @@ -54,7 +54,7 @@ describe('sbb-teaser', () => {
aria-label="Sbb teaser"
alignment="bottom"
>
<img slot="image" src=${placeholderImage} alt="400x300" />
<img slot="image" src=${images[0]} alt="400x300" />
<span slot="chip">Chip</span>
<span slot="title">TITLE</span>
<p slot="description">description</p>
Expand All @@ -70,7 +70,7 @@ describe('sbb-teaser', () => {
aria-label="Sbb teaser"
alignment="bottom"
>
<img slot="image" src=${placeholderImage} alt="400x300" />
<img slot="image" src=${images[0]} alt="400x300" />
<span slot="chip">Chip</span>
<span slot="title">TITLE</span>
<p slot="description">description</p>
Expand Down

0 comments on commit 9765aff

Please sign in to comment.