forked from stakwork/sphinx-nav-fiber
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add node without timestamps * feat: disable some tests temporary * refactor: return auto tests for add node modal * fix: fix test * fix: fix tests * fix: fix regexp * feat: fix regexp * feat: update cypress constant * feat: add yarn caching * feat: add prettier and ci checks * fix: lint issues * fix: add yarn global caching * fix: eslint version --------- Co-authored-by: Расул <[email protected]> Co-authored-by: Emberist <[email protected]> Co-authored-by: kevkevin <[email protected]>
- Loading branch information
1 parent
9164bd8
commit e270ff4
Showing
13 changed files
with
165 additions
and
109 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
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 @@ | ||
16.18 |
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,3 +1,5 @@ | ||
enableGlobalCache: true | ||
|
||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-3.4.1.cjs |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
// buttons | ||
export const addNodeButtonHome = ".kGagkX > .sc-gsnTZi"; | ||
export const addNodeButtonHome = "#add-node-cta"; | ||
export const addNodeButtonSidebarOpen = ".sc-iIPllB > .sc-gsnTZi > .sc-dkzDqf"; | ||
export const addNodeSubmitButton = ".jkcwwh > .sc-gsnTZi"; | ||
export const addNodeCloseButton = "[data-test=add-node-close-button]"; | ||
export const addNodeSubmitButton = "#add-node-submit-cta"; | ||
export const addNodeCloseButton = "#add-node-close-button"; | ||
|
||
// modal & error messages | ||
export const addNodeModal = ".sc-ksZaOG"; | ||
export const tagError = ":nth-child(5) > .hSMvhC > .jsuUoS"; | ||
export const mainError = "[data-test=add-node-error-alert]"; | ||
export const addNodeModal = "#add-node-form"; | ||
export const tagError = "#tag-input-errors"; | ||
export const mainError = "#add-node-error-alert"; | ||
|
||
// inputs | ||
export const link = "#link"; | ||
export const startTime = "#startTime"; | ||
export const endTime = "#endTime"; | ||
export const description = "#description"; | ||
export const tags = "#tags"; | ||
export const link = "#add-node-link"; | ||
export const startTime = "#add-node-start-time"; | ||
export const endTime = "#add-node-end-time"; | ||
export const description = "#add-node-description"; | ||
export const tags = "#add-node-tags"; | ||
export const checkbox = "#add-node-timestamps-checkbox"; | ||
|
||
// alerts | ||
export const toast = ".Toastify__toast-body"; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** @type {import('prettier').Config} */ | ||
const config = { | ||
bracketSpacing: true, | ||
jsxSingleQuote: false, | ||
printWidth: 120, | ||
semi: false, | ||
singleQuote: true, | ||
tabWidth: 2, | ||
trailingComma: 'all', | ||
} | ||
|
||
module.exports = config |
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.