Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/server/test/client.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ describe('OpenFeatureClient', () => {
});
});

describe('Requirement 1.4.1', () => {
describe('Requirement 1.4.1.1', () => {
let client: Client;

beforeEach(() => {
Expand Down Expand Up @@ -375,7 +375,7 @@ describe('OpenFeatureClient', () => {
});
});

describe('Requirement 1.4.3.1', () => {
describe('Requirement 1.4.4.1', () => {
describe('generic support', () => {
it('should support generics', async () => {
// No generic information exists at runtime, but this test has some value in ensuring the generic args still exist in the typings.
Expand All @@ -400,7 +400,7 @@ describe('OpenFeatureClient', () => {
expect(details).toBeDefined();
});

describe('Requirement 1.4.2, 1.4.3', () => {
describe('Requirement 1.4.3', () => {
it('should contain flag value', () => {
expect(details.value).toEqual(NUMBER_VALUE);
});
Expand Down
Loading