-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Basic tests setup * Add ts configs * Update configs * Remove cli dep * Add utils * Run fluence cli * Simplify configs * Quickstart test * Use Tree Kill * Test quickstart for all modes * Wait gateway start * Use sequential runner * Start writing deploy tests * Remove undefined * Tests with local env * Add comments * Use env variables * Wait for workers deploy * Remove bail * Update js-client * Remove log, wait for service * Remove skip * chore: Add tests CI (#130) * fix(aqua): Remove topology hack (#125) * Fix scripts * Remove hack * feat(readme): Add `fluence deal logs` output example to README [DXJ-512] (#126) Add deal logs output to README * Setup fcli with action * Use unstable * Test CI * Fix * Fx * Add colors * Fix * Dump logs * Bump js-client * More logs * Log stdout and stderr * Capture stderr * F * F * F * > * NO COLOR * Setup tmate * Add workers * Run without CI true * Run on builder * Run tmata * Setup rust * No colors * Do not setup tmate * Cleanup --------- Co-authored-by: InversionSpaces <InversionSpaces@vivaldi.net> --------- Co-authored-by: Anatolios Laskaris <github_me@nahsi.dev>
- Loading branch information
1 parent
5269f45
commit bf78df6
Showing
16 changed files
with
4,860 additions
and
39 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
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
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,39 @@ | ||
/** | ||
* Copyright 2023 Fluence Labs Limited | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/** @type {import('ts-jest').JestConfigWithTsJest} */ | ||
export default { | ||
testEnvironment: "node", | ||
testTimeout: 1000 * 60 * 10, // 10 minutes in milliseconds | ||
projects: [ | ||
{ | ||
// Uses the serial runner for integration test files | ||
displayName: "INTEGRATION", | ||
runner: "jest-serial-runner", | ||
testMatch: ["<rootDir>/test/**/*.integration-test.ts"], | ||
extensionsToTreatAsEsm: [".ts"], | ||
transform: { | ||
"^.+\\.tsx?$": [ | ||
"ts-jest", | ||
{ | ||
useESM: true, | ||
tsconfig: "test/tsconfig.json", | ||
}, | ||
], | ||
}, | ||
}, | ||
], | ||
}; |
Oops, something went wrong.