Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 6883eb4

Browse files
committed
fixup! chore(build): fix version placeholder matching
1 parent 337b9a9 commit 6883eb4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/e2e/tests/version.spec.js

+4
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ describe('angular.version', function() {
3333
expect(version.then(get('codeName'))).toEqual(jasmine.any(String));
3434
});
3535

36+
it('should not contain "NG_VERSION_" in `codeName`', function() {
37+
expect(version.then(get('codeName'))).not.toMatch(/NG_VERSION_/);
38+
});
39+
3640
it('should have `full` === `"major.minor.dot"`', function() {
3741
expect(version.then(validate)).toBe(true);
3842

0 commit comments

Comments
 (0)