You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The @aws-cdk/assert library is not a jsii library at the moment, as it has global functions that cannot be expressed in jsii. This means that it is impossible to package it to non-typescript languages. We should refactor it so that it will use static methods instead of global functions (i.e. Assert.expect(stack) instead of expect(stack)) and turn it into a jsii module so it will be available in all languages.
The text was updated successfully, but these errors were encountered:
The actual solution might instead take the form of making an assertions helper library, that facilitates using any languages' assertion framework with the CDK.
The @aws-cdk/assert library is not a jsii library at the moment, as it has global functions that cannot be expressed in jsii. This means that it is impossible to package it to non-typescript languages. We should refactor it so that it will use static methods instead of global functions (i.e.
Assert.expect(stack)
instead ofexpect(stack)
) and turn it into a jsii module so it will be available in all languages.The text was updated successfully, but these errors were encountered: