Skip to content

Commit

Permalink
fixup karma test
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaskiewicz committed Jun 7, 2023
1 parent c9fce88 commit b3a8b33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/karma/test-app/static-members/karma.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('static-members', function () {
it('renders properly with initialized, decorated static members', async () => {
const cmp = app.querySelector('static-decorated-members');

expect(cmp.textContent.trim()).toBe('This is a component with a static @State-ful member');
expect(cmp.textContent.trim()).toBe('This is a component with static a Stencil decorated member');
});

it('renders properly with a separate export', async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ export class StaticDecoratedMembers {
@State() static property = '@State-ful';

render() {
return <div>This is a component with static a {StaticDecoratedMembers.property} member</div>;
return <div>This is a component with static a Stencil decorated member</div>;
}
}

0 comments on commit b3a8b33

Please sign in to comment.