Skip to content

Commit

Permalink
fix: format
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideMininni-Fincons committed Oct 12, 2023
1 parent dc981b5 commit 2810b38
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ const config = JSON.stringify(sampleData[0]);

describe('sbb-timetable-park-and-rail', () => {
it('renders', async () => {
const root = await fixture(html`<sbb-timetable-park-and-rail config="${config}"></sbb-timetable-park-and-rail>`);
const root = await fixture(
html`<sbb-timetable-park-and-rail config="${config}"></sbb-timetable-park-and-rail>`,
);

expect(root).dom.to.be.equal(
`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ const config = JSON.stringify(sampleData);

describe('sbb-timetable-row-column-headers', () => {
it('renders', async () => {
const root = await fixture(html`<sbb-timetable-row-column-headers config="${config}"></sbb-timetable-row-column-headers>`);
const root = await fixture(
html`<sbb-timetable-row-column-headers
config="${config}"
></sbb-timetable-row-column-headers>`,
);

expect(root).dom.to.be.equal(
`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ const config = JSON.stringify(sampleData[1]);

describe('sbb-timetable-row-day-change', () => {
it('renders', async () => {
const root = await fixture(html`<sbb-timetable-row-day-change config="${config}"></sbb-timetable-row-day-change>`);
const root = await fixture(
html`<sbb-timetable-row-day-change config="${config}"></sbb-timetable-row-day-change>`,
);

expect(root).dom.to.be.equal(
`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ const config = JSON.stringify(sampleData[0]);
describe('sbb-timetable-row-header', () => {
it('renders', async () => {
const root = await fixture(
html`<sbb-timetable-row-header config="${config}" role="rowheader"></sbb-timetable-row-header>`,
html`<sbb-timetable-row-header
config="${config}"
role="rowheader"
></sbb-timetable-row-header>`,
);

expect(root).dom.to.be.equal(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ const config = JSON.stringify(sampleData[0]);
describe('sbb-timetable-travel-hints', () => {
it('renders', async () => {
const root = await fixture(
html`<sbb-timetable-travel-hints config="${config}" appearance="first-level-list"></sbb-timetable-travel-hints>`,
html`<sbb-timetable-travel-hints
config="${config}"
appearance="first-level-list"
></sbb-timetable-travel-hints>`,
);

expect(root).dom.to.be.equal(
Expand Down

0 comments on commit 2810b38

Please sign in to comment.