Skip to content

Commit b8c18c8

Browse files
committed
fix: type error
1 parent efdf8fb commit b8c18c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/astro/src/default/utils/content/squash.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ describe('squash', () => {
9191
data: {
9292
template: 'default',
9393
i18n: {
94-
nextLessonPrefix: 'Next lesson: ',
94+
startWebContainerText: 'Run this tutorial',
9595
partTemplate: 'Part ${index}: ${title}',
9696
},
9797
} satisfies Metadata,
@@ -107,7 +107,7 @@ describe('squash', () => {
107107

108108
expect(squash<Metadata>([lesson1.data, tutorial.data], ['i18n'])).toEqual({
109109
i18n: {
110-
nextLessonPrefix: 'Next lesson: ',
110+
startWebContainerText: 'Run this tutorial',
111111
partTemplate: 'Foobar: ${title}',
112112
},
113113
});

0 commit comments

Comments
 (0)