diff --git a/pkg/pool-utils/test/Version.test.ts b/pkg/pool-utils/test/Version.test.ts new file mode 100644 index 0000000000..59514230ab --- /dev/null +++ b/pkg/pool-utils/test/Version.test.ts @@ -0,0 +1,11 @@ +import { deploy } from '@balancer-labs/v2-helpers/src/contract'; +import { expect } from 'chai'; + +describe('Version', function () { + describe('constructor', () => { + it('returns the correct string', async () => { + const version = await deploy('Version', { args: ['test version string'] }); + expect(await version.version()).to.be.equal('test version string'); + }); + }); +});