Skip to content

Commit

Permalink
update test name
Browse files Browse the repository at this point in the history
  • Loading branch information
bz888 committed Oct 3, 2023
1 parent bcdaeef commit 3c9308e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/common-cosmos/src/project/project.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ describe('project.yaml', () => {
) as any;

Check warning on line 46 in packages/common-cosmos/src/project/project.spec.ts

View workflow job for this annotation

GitHub Actions / code-style

Unexpected any. Specify a different type
expect(() => parseCosmosProjectManifest(cosmosManifest)).toThrow('failed to parse project.yaml');
});
it('Ensure correctness on manifest deployment', () => {
it('Ensure chainTypes existence on manifest deployment', () => {
const cosmosManifest = loadFromJsonOrYaml(path.join(projectsDir, './protoTest1', 'project.yaml')) as any;

Check warning on line 50 in packages/common-cosmos/src/project/project.spec.ts

View workflow job for this annotation

GitHub Actions / code-style

Unexpected any. Specify a different type
const manifest = parseCosmosProjectManifest(cosmosManifest);
expect(manifest.asImpl.network.chainTypes.size).toBeGreaterThan(0);
Expand Down

0 comments on commit 3c9308e

Please sign in to comment.