-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [bcs] Add remaining function to tell remaining deserializing bytes * [bcs] Add BCS spec to verify across SDKs The main purpose of the spec is to check the same tests across multiple SDKs and ensure that they're consistent. * [spec] Convert match patterns to regex * [spec] Use cucumber directly rather than the node_modules
- Loading branch information
1 parent
7963ef1
commit 881517f
Showing
8 changed files
with
1,269 additions
and
18 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,11 @@ | ||
// cucumber.js | ||
let common = [ | ||
'tests/features/**/*.feature', // Specify our feature files | ||
'--loader ts-node/esm', | ||
'--import tests/step-definitions/**/*.mts', // Load step definitions | ||
'--format progress-bar', // Load custom formatter | ||
].join(' '); | ||
|
||
module.exports = { | ||
default: common | ||
}; |
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.