Skip to content
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

pswi schema validation tests #3746

Draft
wants to merge 4 commits into
base: v2.x/staging
Choose a base branch
from
Draft
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
12 changes: 12 additions & 0 deletions tests/local/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
indent_style = space
indent_size = 2
1 change: 1 addition & 0 deletions tests/local/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
reports/*
20 changes: 20 additions & 0 deletions tests/local/.eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
env:
es6: true
node: true
mocha: true
extends: 'eslint:recommended'
parserOptions:
ecmaVersion: 2018
rules:
indent:
- error
- 2
linebreak-style:
- error
- unix
quotes:
- error
- single
semi:
- error
- always
86 changes: 86 additions & 0 deletions tests/local/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
# packages
*.pax
*.zip
*.gz
*.tgz

# temporary folder
.tmp/

# test report folder
reports/

# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# next.js build output
.next
test/cli/zowe-cli-command-wrapper.sh

# IDE files
.history

# Mac OS
.DS_Store

# SonarQube Scan
.scannerwork

# config file copied from scripts/install-config-?.sh
scripts/install-config.sh
9 changes: 9 additions & 0 deletions tests/local/.mocharc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
recursive: true
# disable parallel which may cause issues
no-parallel: true
jobs: 1
timeout: 360000
reporter: mocha-multi-reporters
reporter-option:
- configFile=test/multi-reporters.json
require: test/mocha-helper.js
1 change: 1 addition & 0 deletions tests/local/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry=https://zowe.jfrog.io/zowe/api/npm/npm-release/
Loading
Loading