Skip to content
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

update failure points in plugin to do nothing instead #94

Merged
merged 2 commits into from
Feb 10, 2021

Conversation

lindsaylevine
Copy link

Fixes #93

for the test cases that previously tested the failure points, i'm thinking i could just test that it doesnt copy the expected files over in onBuild()? curious if yall have a better idea for testing that the plugin does nothing lol

@lindsaylevine lindsaylevine added type: chore work needed to keep the product and development running smoothly type: feature code contributing to the implementation of a feature and/or user facing functionality labels Feb 4, 2021
@lindsaylevine lindsaylevine force-pushed the ll/update-failure-points branch from 1f2f3c2 to 21566bd Compare February 4, 2021 05:18
Copy link

@erezrokah erezrokah left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good per a small comment.

For the tests, will returning true/false in onPreBuild/onBuild if the plugin did something/did nothing and assert that in the tests work?

@lindsaylevine lindsaylevine force-pushed the ll/update-failure-points branch from 21566bd to 5da6039 Compare February 7, 2021 23:14
test/index.js Outdated
utils,
constants: { FUNCTIONS_SRC: 'out_functions' },
})
expect(output).toBe(undefined)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[sand] FYI, Jest has a toBeUndefined matcher.

index.js Outdated
@@ -82,6 +56,8 @@ module.exports = {
// inside `onPreBuild`.
const nextOnNetlify = require('next-on-netlify')
nextOnNetlify({ functionsDir: FUNCTIONS_SRC, publishDir: PUBLISH_DIR })

return true
Copy link

@ehmicky ehmicky Feb 8, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Build plugin methods should not return values. Returning values is reserved for future features.
Also applies to onPreBuild().

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is done per my suggestion to be able to test that the method skips artifacts generation based on return value.
Another option is indeed to verify that nothing was generated in the publish/functions directory (or remove those tests completely)

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems to me checking for the side effect of the function would give a stronger guarantee that it works as intended.

The problem with plugins returning values in methods is that they would prevent us from using return values in future features, which we might want to do.

Copy link

@ehmicky ehmicky left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good, except for one small issue with returning values in plugins.

@lindsaylevine lindsaylevine force-pushed the ll/update-failure-points branch from 5da6039 to f80b008 Compare February 10, 2021 21:15
@lindsaylevine lindsaylevine merged commit b2718f2 into main Feb 10, 2021
@lindsaylevine lindsaylevine deleted the ll/update-failure-points branch February 10, 2021 21:35
lindsaylevine added a commit that referenced this pull request Feb 18, 2021
- fail build if plugin cant load next.config.js ([#99](#99))
- chore: decrease package size ([#101](#101))
- remove Next as a peer dependency ([#96](#96))
- update failure points in plugin to do nothing instead ([#94](#94))
erezrokah pushed a commit that referenced this pull request Mar 16, 2021
* update failure points in plugin to do nothing instead

* refactor passing nextConfigPath into doesNotNeedPlugin
serhalp pushed a commit that referenced this pull request Apr 5, 2024
…onse tagging (#94)

* feat: initial tags manifest wip

* feat: augment prerender manifest

* feat: refactor code

* fix: tidy up

* feat: async copying again

* chore: consistency

* chore: error check

* chore: update test name for clarity

* fix: move tag manifest

* chore: remove unnecessary cache tag tests

* fix: update page router cache tag prefix
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: chore work needed to keep the product and development running smoothly type: feature code contributing to the implementation of a feature and/or user facing functionality
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Feature: don't fail the build if the site doesn't match the requirements
3 participants