Skip to content

Commit d6dbdf6

Browse files
e2e fixes
1 parent e30ea71 commit d6dbdf6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/end-to-end/src/hydrate-props/hydrate-props.e2e.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ describe('different types of decorated properties and states render on both serv
2222
// html template renders kebab case props
2323
expect(html).toContain('<!--t.1.1.1.0-->foo1 - bar1<');
2424
// html template doesn't support camelcase
25-
expect(html).toContain('<!--t.4.1.1.0--> - bar<');
25+
expect(html).toContain('<!--t.4.1.1.0--> - <');
2626
// jsx template renders kebab case
2727
expect(html).toContain('<!--t.2.1.1.0-->foo3 - bar3<');
2828
expect(html).toContain('<!--t.5.1.1.0-->foo3 - bar3<');

test/end-to-end/src/ssr-runtime-decorators/ssr-runtime-decorators.e2e.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ describe('different types of decorated properties and states render on both serv
108108
expect(await txt('decoratedState')).toBe('10');
109109
});
110110

111-
it('renders different values on different component instances ', async () => {
111+
it('renders different values on different component instances', async () => {
112112
const doc = await renderToString(`
113113
<runtime-decorators></runtime-decorators>
114114
<runtime-decorators

0 commit comments

Comments
 (0)