Skip to content

Commit

Permalink
tweak test case
Browse files Browse the repository at this point in the history
  • Loading branch information
thescientist13 committed Jun 18, 2024
1 parent edbff18 commit c5cb5a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/cases/ts/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import './greeting.ts';
export default class App extends HTMLElement {
connectedCallback() {
this.innerHTML = `
<wcc-greeting name="WCC"></wcc-greeting>
<wcc-greeting name="TypeScript"></wcc-greeting>
`;
}
}
Expand Down
2 changes: 1 addition & 1 deletion test/cases/ts/ts.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe('Run WCC For ', function() {

it('should server render the expected greeting', () => {
expect(headings.length).to.equal(1);
expect(headings[0].textContent).to.equal('Hello WCC!');
expect(headings[0].textContent).to.equal('Hello TypeScript!');
});
});
});
Expand Down

0 comments on commit c5cb5a3

Please sign in to comment.