-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/reposense/RepoSense into …
…2184-line-colors
- Loading branch information
Showing
8 changed files
with
1,089 additions
and
875 deletions.
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 |
---|---|---|
|
@@ -22,3 +22,4 @@ node_modules | |
|
||
reposense-report/ | ||
docs/_site/ | ||
bin/ |
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,43 +1,60 @@ | ||
{ | ||
"plugins": [ | ||
"@stylistic/stylelint-plugin", | ||
"stylelint-order" | ||
], | ||
"extends": [ | ||
"stylelint-config-recommended-scss", | ||
"stylelint-config-standard", | ||
"stylelint-config-standard-scss", | ||
"stylelint-config-recommended-vue" | ||
], | ||
"rules": { | ||
"declaration-no-important": true, | ||
"declaration-block-single-line-max-declarations": 1, | ||
"no-invalid-double-slash-comments": true, | ||
"function-no-unknown": null, | ||
"no-descending-specificity": null, | ||
"selector-type-no-unknown": null, | ||
"at-rule-no-unknown": null, | ||
"no-duplicate-selectors": null, | ||
"length-zero-no-unit": true, | ||
"value-keyword-case": "lower", | ||
"selector-type-case": "lower", | ||
"color-no-invalid-hex": true, | ||
"string-no-newline": true, | ||
"unit-no-unknown": true, | ||
"property-no-unknown": true, | ||
"block-no-empty": true, | ||
"comment-no-empty": true, | ||
"no-extra-semicolons": true, | ||
"no-invalid-double-slash-comments": true, | ||
"declaration-no-important": true, | ||
"declaration-block-single-line-max-declarations": 1, | ||
"number-leading-zero": "never", | ||
"number-no-trailing-zeros": null, | ||
"string-quotes": "single", | ||
"length-zero-no-unit": true, | ||
"value-keyword-case": "lower", | ||
"property-case": "lower", | ||
"declaration-colon-space-after": "always", | ||
"selector-type-case": "lower", | ||
"selector-list-comma-newline-after": "always", | ||
"no-eol-whitespace": true, | ||
"shorthand-property-no-redundant-values": null, | ||
"declaration-empty-line-before": null, | ||
"selector-class-pattern": null, | ||
"color-function-notation": null, | ||
"alpha-value-notation": null, | ||
"comment-empty-line-before": null, | ||
"property-no-vendor-prefix": null, | ||
"selector-pseudo-element-colon-notation": null, | ||
"at-rule-empty-line-before": null, | ||
"font-family-name-quotes": null, | ||
"color-hex-length": null, | ||
"@stylistic/no-extra-semicolons": true, | ||
"@stylistic/number-leading-zero": "never", | ||
"@stylistic/number-no-trailing-zeros": null, | ||
"@stylistic/property-case": "lower", | ||
"@stylistic/string-quotes": "single", | ||
"@stylistic/declaration-colon-space-after": "always", | ||
"@stylistic/selector-list-comma-newline-after": "always", | ||
"@stylistic/no-eol-whitespace": true, | ||
"@stylistic/indentation": 2, | ||
"@stylistic/block-opening-brace-space-before": "always", | ||
"@stylistic/declaration-colon-space-before": "never", | ||
"order/properties-alphabetical-order": true, | ||
"indentation": 2, | ||
"scss/at-import-partial-extension": null, | ||
"function-no-unknown": null, | ||
"scss/at-import-no-partial-leading-underscore": null, | ||
"no-descending-specificity": null, | ||
"scss/no-global-function-names": null, | ||
"selector-type-no-unknown": null, | ||
"at-rule-no-unknown": null, | ||
"no-duplicate-selectors": null, | ||
"block-opening-brace-space-before": "always", | ||
"declaration-colon-space-before": "never" | ||
"scss/at-import-no-partial-leading-underscore": null, | ||
"scss/at-import-partial-extension": null, | ||
"scss/load-no-partial-leading-underscore": null, | ||
"scss/double-slash-comment-empty-line-before": null, | ||
"scss/double-slash-comment-whitespace-inside": null, | ||
"scss/dollar-variable-pattern": null | ||
} | ||
} |
62 changes: 62 additions & 0 deletions
62
frontend/cypress/tests/chartView/chartView_scrollToActiveRepo.cy.js
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 |
---|---|---|
@@ -0,0 +1,62 @@ | ||
describe('scroll to active repo', () => { | ||
// need to set scrollBehavior to false because the default behavior is to scroll the element into view | ||
it('selecting a visible repo should not scroll', { scrollBehavior: false }, () => { | ||
// close the error message box | ||
cy.get('.error-message-box') | ||
.should('be.visible'); | ||
|
||
cy.get('#summary-wrapper > #summary > .error-message-box > .error-message-box__close-button') | ||
.click(); | ||
|
||
cy.get('.error-message-box') | ||
.should('not.be.visible'); | ||
|
||
cy.get('.icon-button.fa-code') | ||
.should('exist') | ||
.first(); | ||
|
||
let scrollTopOriginal = 0; | ||
cy.get('#summary-wrapper') | ||
.first() | ||
.then(($el) => { | ||
scrollTopOriginal = $el.prop('scrollTop'); | ||
}); | ||
|
||
cy.get('.icon-button.fa-code') | ||
.should('exist') | ||
.first() | ||
.click(); | ||
|
||
cy.get('#summary-wrapper') | ||
.first() | ||
.then(($el) => { | ||
const scrollTop = $el.prop('scrollTop'); | ||
expect(scrollTop).to.equal(scrollTopOriginal); | ||
}); | ||
}); | ||
|
||
it('selecting a non-visible repo should scroll', () => { | ||
cy.get('.icon-button.fa-code') | ||
.should('exist') | ||
.last() | ||
.click(); | ||
|
||
cy.get('#summary-wrapper') | ||
.first() | ||
.then(($el) => { | ||
const scrollTop = $el.prop('scrollTop'); | ||
expect(scrollTop).to.not.equal(0); | ||
}); | ||
|
||
cy.url() | ||
.should('contain', 'tabAuthor=yong24s') | ||
.should('contain', 'tabRepo=reposense%2FRepoSense%5Bcypress%5D'); | ||
|
||
cy.reload(); | ||
|
||
cy.get('.icon-button.fa-code') | ||
.should('exist') | ||
.last() | ||
.should('be.visible'); | ||
}); | ||
}); |
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.