From e1e0809162c04487f7ef2342384198c430df8051 Mon Sep 17 00:00:00 2001 From: Jonah Grimes Date: Mon, 29 Mar 2021 12:56:07 -0400 Subject: [PATCH] added happy path testing, reformatted changeset Signed-off-by: Jonah Grimes --- .changeset/swift-lobsters-learn.md | 4 +++- packages/catalog-model/src/kinds/GroupEntityV1alpha1.test.ts | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.changeset/swift-lobsters-learn.md b/.changeset/swift-lobsters-learn.md index e5adfde478..afdc4e1146 100644 --- a/.changeset/swift-lobsters-learn.md +++ b/.changeset/swift-lobsters-learn.md @@ -3,4 +3,6 @@ '@backstage/plugin-catalog-backend': patch --- -Added support for the "members" field of the Group entity, allowing specification of direct members from the Group side of the relationship. Added support to the BuiltinKindsEntityProcessor to generate the appropriate relationships. +Added support for the "members" field of the Group entity, allowing specification of +direct members from the Group side of the relationship. Added support to the +`BuiltinKindsEntityProcessor` to generate the appropriate relationships. diff --git a/packages/catalog-model/src/kinds/GroupEntityV1alpha1.test.ts b/packages/catalog-model/src/kinds/GroupEntityV1alpha1.test.ts index aa8011e977..6e59637c67 100644 --- a/packages/catalog-model/src/kinds/GroupEntityV1alpha1.test.ts +++ b/packages/catalog-model/src/kinds/GroupEntityV1alpha1.test.ts @@ -39,6 +39,7 @@ describe('GroupV1alpha1Validator', () => { }, parent: 'group-a', children: ['child-a', 'child-b'], + members: ['jdoe'], }, }; });