Skip to content

Commit 3ca0d57

Browse files
committed
test: add test for version validation when angular@19 is used
1 parent f70172e commit 3ca0d57

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/integration.test.mjs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ test('doesnt fail if prerender-routes.json file is missing', async () => {
6666
assert.deepEqual(success, true)
6767
})
6868

69+
test('checks version for angular 19', async () => {
70+
const result = await validateAngularVersion('tests/fixtures/angular-19-common-engine')
71+
assert.strictEqual(result, true)
72+
})
73+
6974
test('checks version for angular 18', async () => {
7075
const result = await validateAngularVersion('tests/fixtures/application-builder')
7176
assert.strictEqual(result, true)

0 commit comments

Comments
 (0)