Skip to content

chore: update protocol_tests using yarn generate-clients #1143

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
"clear-build-cache": "rimraf ./packages/*/build/* ./clients/*/*/build/*",
"clear-build-info": "rimraf ./packages/*/*.tsbuildinfo ./clients/*/*/*.tsbuildinfo",
"build:crypto-dependencies": "lerna run --scope '@aws-sdk/types' --scope '@aws-sdk/util-utf8-browser' --scope '@aws-sdk/util-locate-window' --scope '@aws-sdk/hash-node' --include-dependencies pretest",
"build:protocols": "yarn build:crypto-dependencies && lerna run --scope '@aws-sdk/protocol-tests-*' --include-dependencies pretest",
"build:protocols": "yarn build:crypto-dependencies && lerna run --scope '@aws-sdk/aws-*' --include-dependencies pretest",
"build:smithy-client": "yarn build:crypto-dependencies && lerna run --scope '@aws-sdk/client-rds-data' --include-dependencies pretest",
"build:all": "yarn build:crypto-dependencies && lerna run pretest --include-dependencies --include-dependents",
"pretest:all": "yarn build:all",
"test:all": "jest --coverage --passWithNoTests && lerna run test --scope @aws-sdk/stream-collector-browser --scope @aws-sdk/hash-blob-browser",
"test:functional": "jest --config tests/functional/jest.config.js --passWithNoTests",
"test:integration": "cucumber-js --fail-fast",
"test:protocols": "yarn build:protocols && lerna run test --scope '@aws-sdk/protocol-tests-*'"
"test:protocols": "yarn build:protocols && lerna run test --scope '@aws-sdk/aws-*'"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -72,4 +72,4 @@
"lint-staged": {
"**/*.{ts,js,md,json}": "prettier --write"
}
}
}
14 changes: 14 additions & 0 deletions protocol_tests/aws-ec2/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/node_modules/
/build/
/coverage/
/docs/
/types/
/dist/
*.tsbuildinfo
*.tgz
*.log
package-lock.json

*.d.ts
*.js
*.js.map
4 changes: 4 additions & 0 deletions protocol_tests/aws-ec2/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/coverage/
/docs/
tsconfig.test.json
*.tsbuildinfo
6 changes: 3 additions & 3 deletions protocol_tests/aws-ec2/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@aws-sdk/protocol-tests-aws-ec2
@aws-sdk/aws-ec2

[![NPM version](https://img.shields.io/npm/v/@aws-sdk/protocol-tests-aws-ec2/beta.svg)](https://www.npmjs.com/package/@aws-sdk/protocol-tests-aws-ec2)
[![NPM downloads](https://img.shields.io/npm/dm/@aws-sdk/protocol-tests-aws-ec2.svg)](https://www.npmjs.com/package/@aws-sdk/protocol-tests-aws-ec2)
[![NPM version](https://img.shields.io/npm/v/@aws-sdk/aws-ec2/beta.svg)](https://www.npmjs.com/package/@aws-sdk/aws-ec2)
[![NPM downloads](https://img.shields.io/npm/dm/@aws-sdk/aws-ec2.svg)](https://www.npmjs.com/package/@aws-sdk/aws-ec2)

For SDK usage, please step to [SDK reademe](https://github.com/aws/aws-sdk-js-v3).
Loading