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

Added runtime integration tests #473

Merged
merged 3 commits into from
Jan 12, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions integration-tests/runtime-tests/.codeac.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: '1'
tools:
eslint:
ext: '.ts,.tsx'
tslint:
enabled: false
14 changes: 14 additions & 0 deletions integration-tests/runtime-tests/.eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
env:
browser: false
es2021: true
extends:
- "plugin:@typescript-eslint/recommended"
parser: '@typescript-eslint/parser'
parserOptions:
project: ["./tsconfig.json"]
ecmaVersion: 2020
sourceType: module
plugins:
- '@typescript-eslint'
rules: {}
ignorePatterns: ["src/**/**.d.ts", "src/**/**.js", "src/frontend/generated/*"]