describe('PerformerDescription', () => {
  it('constructs', () => {
    const description = new PerformerDescription('hello');
    expect(description.value).toBe('hello');
  });