-
Notifications
You must be signed in to change notification settings - Fork 53
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
fix SCT-2914 / PUBLIC-1493 - movement of unselected cells #2076
Open
eapearson
wants to merge
47
commits into
develop
Choose a base branch
from
fix-PUBLIC-1493
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 35 commits
Commits
Show all changes
47 commits
Select commit
Hold shift + click to select a range
1b35148
fix SCT-2914 / PUBLIC-1493 - movement of unselected cells
eapearson 6aad8e9
add more test doc
eapearson 632318d
fix code quality issue
eapearson a4a9a83
Address github code quality alerts
eapearson 5ae04bc
reformat to make codacy happy
eapearson f10799f
more codacy / stylelint happiness
eapearson 9b60725
more codacy spam
eapearson 2c7e7fa
improve test case property naming (TEST_CASEX -> TEST_CASE_X); move l…
eapearson f6e3d09
refactor test data to support case and env defaults
eapearson b63e27c
don't expose service key
eapearson 9539643
use null, not empty string
eapearson da58646
move some test utils into new NarrativeTesting class (and file), to c…
eapearson 25ef6fe
refactor integration tests
eapearson 2ce09ea
remove inadvertently re-exported functions
eapearson 09e0a65
remove duplicate code, part 1
eapearson 234228e
move test data to separate json file
eapearson 4170676
change test data to match ci changes
eapearson 22454ca
refactor some common code into functions; fix usage of async expect
eapearson 574ef34
test config should use narrativetest as the test user
eapearson c26d813
use chrome binary in pupeteer
eapearson c96a1fc
Merge remote-tracking branch 'origin/develop' into fix-PUBLIC-1493
eapearson efbd2bd
add unreleased section to release notes
eapearson 7ec78de
prettier and linting fixes
eapearson b46252a
add eslint pre push check (just files that will be pushed).
eapearson 44a05cf
add auto-creation of docker network for local image run
eapearson 6c3dbc1
address sonarcloud issue
eapearson 74c3772
Merge remote-tracking branch 'origin/develop' into fix-PUBLIC-1493
eapearson 32cf292
fix regressions due to merge
eapearson 5fe036f
improve eslint prepush
eapearson 6d3cac4
trivial changes to trigger need testing commit
eapearson 5f5e644
eslint warnings return error code
eapearson 4b31bcc
make eslint happy
eapearson dff4d92
make sonarcloud happy
eapearson ea4d6d9
more pr code quality fixes
eapearson 11c8619
more pr code quality fixes
eapearson f4d2f55
Merge remote-tracking branch 'origin/develop' into fix-PUBLIC-1493
eapearson 02b67d0
Correct linting errors in files merged from develop (?!). WebStorm no…
eapearson a7dc8e1
Prettify file.
eapearson 1749f9a
resolve linting errors.
eapearson 3e63351
bump and pin npm versions; works, deterministic (nearly).
eapearson f678d6d
sort scripts
eapearson b81e4a4
remove unused parameter
eapearson a6ddfa6
prettier run pre-push (via husky) should only inspect files being pushed
eapearson 68536e5
use puppeteer's chrome binary; otherwise it is too hard to match chro…
eapearson d5febdd
Merge remote-tracking branch 'origin/develop' into fix-PUBLIC-1493
eapearson 0d7876c
restore data-testid to userMenu (merge regression)
eapearson 820f334
Merge remote-tracking branch 'origin/develop' into fix-PUBLIC-1493
eapearson 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 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npm run husky_msg && npm run prettier_check | ||
npm run husky_msg && npm run prettier_check && npm run eslint-pre-push |
This file contains 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 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 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 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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can all these inline styles be moved into the relevant stylesheet?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, but the goal was not to make as few code changes as possible, whilst adding testing attributes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, they could be. But the point of changing that file at all was to make a small change to allow it to be testable, not to refactor it.