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
This is an initial attempt at creating a shared module of code that is used by both the plugin and framework.
It starts very simple by exposing a normalizeTestName method and some data test utils constants to test the waters, if this is the way to go, we can slowly add more shared code onto it
I am only playing around for now :) this has not yet been tested, nor do I know whether implementing our own modules is something that could work for a library
I am only playing around for now :) this has not yet been tested, nor do I know whether implementing our own modules is something that could work for a library
I'm not sure if the intellij plugin will include it inside the zip or if it expects it to be in maven central already?
I am only playing around for now :) this has not yet been tested, nor do I know whether implementing our own modules is something that could work for a library
I'm not sure if the intellij plugin will include it inside the zip or if it expects it to be in maven central already?
ah good point, no it won't find it - let me see what I can do :)
What I have (import the srcDir and compile) works, however, should any module that imports this bridge (framework and plugin at the moment) ever be imported in another module that would also import this bridge, we would end up with re-declarations - very big ifs here, but it kinda bothers me - still looking for a better way 😄
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is an initial attempt at creating a shared module of code that is used by both the plugin and framework.
It starts very simple by exposing a
normalizeTestNamemethod and some data test utils constants to test the waters, if this is the way to go, we can slowly add more shared code onto it