-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #857 from totvs/dev
Liberação versão 1.3.8
- Loading branch information
Showing
167 changed files
with
9,016 additions
and
3,422 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// module.exports = { | ||
// env: { | ||
// browser: true, | ||
// commonjs: true, | ||
// es2021: true, | ||
// }, | ||
// extends: ["standard"], | ||
// parser: "@typescript-eslint/parser", | ||
// parserOptions: { | ||
// ecmaVersion: 12, | ||
// }, | ||
// plugins: ["@typescript-eslint"], | ||
// rules: { | ||
// semi: "error", | ||
// quotes: ["error", "double"], | ||
// "no-undef": false, | ||
// }, | ||
// }; |
This file was deleted.
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,34 @@ | ||
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
|
||
name: Test CI | ||
on: | ||
push: | ||
branches: [xfeature/test] | ||
pull_request: | ||
branches: [xfeature/test] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-18.04 | ||
|
||
strategy: | ||
matrix: | ||
node: [16.2.0] | ||
version: [latest] | ||
fail-fast: false | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: Install Dependencies | ||
run: npm install | ||
- name: Run test | ||
run: | | ||
sudo apt-get install xvfb | ||
export DISPLAY=:99.0 | ||
Xvfb -ac :99 -screen 0 1920x1080x16 & | ||
npm run ci-test |
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,16 +1,17 @@ | ||
out | ||
node_modules | ||
.vscode-test/ | ||
*.vsix | ||
*.log | ||
*.map | ||
nls.* | ||
.vscode/mapa timestamp.txt | ||
totvsls.log | ||
totvsls-full.log | ||
totvsls_in.log | ||
totvsls_out.log | ||
*.vsix | ||
.editorconfig | ||
.vscode-test | ||
.vscode/mapa timestamp.txt | ||
~/ | ||
nls.* | ||
node_modules | ||
out | ||
out-test | ||
package-lock.json | ||
tds-vscode-translations-export | ||
*.log | ||
test-extension/ | ||
test-resources/ | ||
test/resources/advpl/**/.vscode/servers.json | ||
test/resources/project-advpl/.vscode/servers.json | ||
out-test/ |
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,61 @@ | ||
"use strict"; | ||
|
||
module.exports = { | ||
recursive: true, | ||
reporter: "spec", | ||
slow: 75, | ||
timeout: 5 * 60000, | ||
ui: "bdd", | ||
"async-only": true, | ||
color: false, | ||
"full-trace": true, | ||
jobs: 1, | ||
sort: true, | ||
"dry-run": false, | ||
"fail-zero": false, | ||
|
||
//growl: true, //não consegui fazer funcionar | ||
//////////////////// | ||
// require: "common-hooks.js", usado em execução paralela | ||
// "fgrep": "" // Only run tests containing this string [string] | ||
// "grep": "" // Only run tests matching this string or regexp [string] | ||
// "invert": false // Inverts --grep and --fgrep matches [boolean] | ||
|
||
// | ||
//ignore: ["test/e2e/activity-bar/**"], | ||
//"allow-uncaught": false, | ||
//bail: false, | ||
//"check-leaks": false, | ||
//delay: true, | ||
//diff: true, | ||
//exit: false, // could be expressed as "'no-exit': true" | ||
//extension: ["js"], | ||
//"fail-zero": true, | ||
//fgrep: "something", // fgrep and grep are mutually exclusive | ||
//file: ["/path/to/some/file", "/path/to/some/other/file"], | ||
//"forbid-only": false, | ||
//"forbid-pending": false, | ||
//global: ["jQuery", "$"], | ||
//grep: /something/i, // also 'something', fgrep and grep are mutually exclusive | ||
//growl: false, | ||
//"inline-diffs": false, | ||
// invert: false, // needs to be used with grep or fgrep | ||
//"node-option": ["unhandled-rejections=strict"], // without leading "--", also V8 flags | ||
//package: "./package.json", | ||
//parallel: false, | ||
//recursive: true, | ||
//reporter: "spec", | ||
//"reporter-option": ["foo=bar", "baz=quux"], // array, not object | ||
//require: "@babel/register", | ||
//retries: 1, | ||
//slow: "75", | ||
//sort: false, | ||
//spec: ["test/**/*.spec.js"], // the positional arguments! | ||
//timeout: "30000", // same as "timeout: '2s'" | ||
// timeout: false, // same as "timeout: 0" | ||
//"trace-warnings": true, // node flags ok | ||
//"v8-stack-trace-limit": 100, // V8 flags are prepended with "v8-" | ||
//watch: false, | ||
//"watch-files": ["lib/**/*.js", "test/**/*.js"], | ||
//"watch-ignore": ["lib/vendor"], | ||
}; |
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 @@ | ||
{"vscode-extension-tester.api-handler-0.0.1":true} |
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,5 @@ | ||
{ | ||
"tabWidth": 2, | ||
"useTabs": false, | ||
"single-quotes": true | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
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 |
---|---|---|
@@ -1,22 +1,19 @@ | ||
.vscode/** | ||
.vscode-test/** | ||
out/test/** | ||
test/** | ||
src/**/*.ts | ||
src/**/*.tsx | ||
**/*.map | ||
!src/**/*.html | ||
**/*.d.* | ||
docs/** | ||
imagens/** | ||
**/*.map | ||
**/tsconfig.json | ||
*.code-workspace | ||
*.log | ||
.all-contributorsrc | ||
.github | ||
.gitignore | ||
.mocharc.js | ||
.vscode-test/** | ||
.vscode/** | ||
~ | ||
docs/** | ||
gulpfile.js | ||
tsconfig.json | ||
.all-contributorsrc | ||
.flowconfig | ||
imagens/** | ||
out-test/** | ||
test/** | ||
vsc-extension-quickstart*.md | ||
*.code-workspace | ||
.transifexrc | ||
.tx | ||
for_flow | ||
*.log |
Oops, something went wrong.