-
Notifications
You must be signed in to change notification settings - Fork 158
test: add tests for plugins written in ESM #1266
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
bf57a27
test: add fixtures for esm plugin tests
jescalada 282b1f4
test: add esm plugin tests
jescalada 4664c79
Update test/fixtures/test-package/esm-multiple-export.js
jescalada 9933950
Merge branch 'main' into esm-plugin-tests
jescalada 5f21d4f
test: add non-plugin object to multiple-export.js to test proper Plug…
jescalada eeb05f2
chore: format
jescalada File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| import { PushActionPlugin } from '@finos/git-proxy/plugin'; | ||
|
|
||
| // test default export (ESM syntax) | ||
| export default new PushActionPlugin(async (req, action) => { | ||
| console.log('Dummy plugin: ', action); | ||
| return action; | ||
| }); |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| import { PushActionPlugin, PullActionPlugin } from '@finos/git-proxy/plugin'; | ||
|
|
||
| // test multiple exports (ESM syntax) | ||
| export default { | ||
| foo: new PushActionPlugin(async (req, action) => { | ||
| console.log('PushActionPlugin: ', action); | ||
| return action; | ||
| }), | ||
| bar: new PullActionPlugin(async (req, action) => { | ||
| console.log('PullActionPlugin: ', action); | ||
| return action; | ||
| }), | ||
| baz: { | ||
| exec: async (req, action) => { | ||
| console.log('not a real plugin object'); | ||
| }, | ||
| }, | ||
| }; | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| import { PushActionPlugin } from '@finos/git-proxy/plugin'; | ||
|
|
||
| class DummyPlugin extends PushActionPlugin { | ||
| constructor(exec) { | ||
| super(); | ||
| this.exec = exec; | ||
| } | ||
| } | ||
|
|
||
| // test default export (ESM syntax) | ||
| export default new DummyPlugin(async (req, action) => { | ||
| console.log('Dummy plugin: ', action); | ||
| return action; | ||
| }); |
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.