Skip to content

Commit 4b5a6e0

Browse files
committed
test: fix e2e i18n test
1 parent cb4a02c commit 4b5a6e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/e2e/tests/i18n/extract-default.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ export default function() {
1414
join('src/app/i18n-test', 'i18n-test.component.html'),
1515
'<p i18n>Hello world</p>'))
1616
.then(() => ng('xi18n'))
17-
.then(() => expectFileToExist(join('projects/test-project', 'messages.xlf')))
18-
.then(() => expectFileToMatch(join('projects/test-project', 'messages.xlf'), /Hello world/));
17+
.then(() => expectFileToExist(join('src', 'messages.xlf')))
18+
.then(() => expectFileToMatch(join('src', 'messages.xlf'), /Hello world/));
1919
}

0 commit comments

Comments
 (0)