Sharing tests

I have two phoenix applications which are different but will have a shared api interface for another app of mine to communicate. Because the implementations of the api calls will be different I can’t share the implementation in a package but was wondering if it’d be possible to share the tests somehow between them so I can insure the api implementations stay consistent without copying any changes to the test back and forth.

1 Like

Test against API specs, for example by Dredd.

3 Likes