-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ability to upload any amount of items (#293)
* feat: ability to upload any amount of pods * feat: unlimited pods list * refactor: upgraded version of fairos and bee * feat: unlimited directories and files * feat: fairos tests runs in parallel with nodejs * refactor: set a bee version to 1.13.0 for tests * refactor: add --without-bees for the fdp-play * fix: fixed recursive data reading * fix: removed --without-bees flag * fix: using the correct variable name in the runner * refactor: puppeteer headless * feat: install chrome for puppeteer * feat: install chrome for puppeteer * feat: install chrome for puppeteer * feat: puppeteer config * feat: puppeteer config * feat: puppeteer config * feat: puppeteer config * feat: puppeteer config * feat: puppeteer config * feat: puppeteer config * feat: puppeteer config * feat: puppeteer config * feat: puppeteer config * feat: puppeteer config * refactor: disable delete fairos tests * refactor: removed logs * refactor: removed comments * feat: v2 migration * test: v2 migration tests * chore: readme update * feat: data migration improvement * test: additional v2 migration test --------- Co-authored-by: Vladan <[email protected]>
- Loading branch information
1 parent
4ff4414
commit fffe4af
Showing
46 changed files
with
1,716 additions
and
551 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 |
---|---|---|
|
@@ -30,3 +30,5 @@ node_modules | |
docs | ||
|
||
.vscode | ||
|
||
test/fdp-storage |
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,5 +1,7 @@ | ||
module.exports = { | ||
launch: { | ||
dumpio: true, // Forwards browser console into test console for easier debugging | ||
headless: 'new', // Opt-in to the new headless mode for Chrome | ||
channel: 'chrome', | ||
}, | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,11 @@ | ||
// eslint-disable-next-line @typescript-eslint/no-var-requires | ||
const { join } = require('path') | ||
|
||
/** | ||
* @type {import("puppeteer").Configuration} | ||
*/ | ||
module.exports = { | ||
// Changes the cache location for Puppeteer. | ||
cacheDirectory: join(__dirname, '.cache', 'puppeteer-data'), | ||
skipDownload: false, | ||
} |
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,4 +1,3 @@ | ||
export * as Account from './account' | ||
export * as Encryption from '../utils/encryption' | ||
export * as Utils from './utils' | ||
//TODO export every exportable |
Oops, something went wrong.