Skip to content

Commit

Permalink
uncomment and enable security checks
Browse files Browse the repository at this point in the history
  • Loading branch information
kaushik-rishi committed May 1, 2024
1 parent 5327cf1 commit 1f0370c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions test/integration.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,9 @@ describe('template integration tests for generated files using the generator and
}
);

/*
it('should generate proper config for X509 security', async() => {
const params = {
server: 'test',
server: 'scram-connections',
securityScheme: 'certs',
certFilesDir: './mocks/kafka/dummyCerts'
};
Expand All @@ -181,7 +180,7 @@ describe('template integration tests for generated files using the generator and

it('should generate proper variable that points to custom cert files location', async() => {
const params = {
server: 'test',
server: 'scram-connections',
securityScheme: 'certs',
certFilesDir: './mocks/kafka/dummyCerts'
};
Expand All @@ -194,5 +193,4 @@ describe('template integration tests for generated files using the generator and
const file = await readFile(path.join(outputDir, expectedFile), 'utf8');
expect(file.includes(expectedVariable)).toBeTruthy();
});
*/
});

0 comments on commit 1f0370c

Please sign in to comment.