This repository has been archived by the owner on Jul 9, 2022. It is now read-only.
forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: enable typescript for cypress
Follow up apache#10161 : - Enable TypeScript for Cypress - Convert support files to TS - Convert an example test (dashboard/filter.test.js) to TS - Upgrade TypeScript for both `cypress-base` and `superset-frontend` - Reenable Prefer TS check for `cypress-base`
- Loading branch information
Showing
14 changed files
with
185 additions
and
153 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,24 @@ | ||
{ | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": ["cypress", "@typescript-eslint"], | ||
"extends": [ | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:cypress/recommended" | ||
], | ||
"rules": { | ||
"@typescript-eslint/explicit-function-return-type": 0, | ||
"@typescript-eslint/explicit-module-boundary-types": 0, | ||
"@typescript-eslint/no-var-requires": 0, | ||
"@typescript-eslint/camelcase": 0 | ||
}, | ||
"settings": { | ||
"import/resolver": { | ||
"node": { | ||
"extensions": [".js", ".jsx", ".ts", ".tsx"] | ||
} | ||
} | ||
}, | ||
"env": { | ||
"cypress/globals": 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
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
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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
// eslint-disable-next-line spaced-comment | ||
/// <reference types="cypress" /> | ||
type JSONPrimitive = string | number | boolean | null; | ||
type JSONValue = JSONPrimitive | JSONObject | JSONArray; | ||
type JSONObject = { [member: string]: JSONValue }; | ||
type JSONArray = JSONValue[]; | ||
|
||
declare namespace Cypress { | ||
interface Chainable { | ||
/** | ||
* Login test user. | ||
*/ | ||
login(): void; | ||
|
||
/** | ||
* Verify a waitXHR response and parse response JSON. | ||
*/ | ||
verifyResponseCodes( | ||
xhr: WaitXHR, | ||
callback?: (result: JSONValue) => void, | ||
): cy; | ||
|
||
/** | ||
* Verify slice container renders. | ||
*/ | ||
verifySliceContainer(chartSelector: JQuery.Selector): cy; | ||
|
||
/** | ||
* Verify slice successfully loaded. | ||
*/ | ||
verifySliceSuccess({ | ||
waitAlias, | ||
querySubString, | ||
chartSelector, | ||
}: { | ||
waitAlias: string; | ||
querySubString: string; | ||
chartSelector: JQuery.Selector; | ||
}): cy; | ||
} | ||
} | ||
|
||
declare module '@cypress/code-coverage/task'; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.