-
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.
- Loading branch information
Showing
67 changed files
with
764 additions
and
313 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 @@ | ||
module.exports = require('./dist/api'); |
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 @@ | ||
export * from './dist/api.js'; |
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
2 changes: 0 additions & 2 deletions
2
e2e/src/programmatic/grouping/client/auth/ForgotPasswordScreen.test.ts
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
2 changes: 0 additions & 2 deletions
2
e2e/src/programmatic/grouping/client/utils/validators.test.ts
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
2 changes: 0 additions & 2 deletions
2
e2e/src/programmatic/grouping/server/controllers/forgotPassword.test.ts
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
2 changes: 0 additions & 2 deletions
2
e2e/src/programmatic/grouping/server/controllers/login.test.ts
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
2 changes: 0 additions & 2 deletions
2
e2e/src/programmatic/grouping/server/controllers/resetPassword.test.ts
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 |
---|---|---|
@@ -1,2 +1 @@ | ||
// Fallback for Jest 27.x.x | ||
module.exports = require('./dist/environment/jsdom'); | ||
module.exports = require('./dist/environment/jsdom').default; |
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 @@ | ||
import jsdom from './dist/environment/jsdom.js'; | ||
|
||
const { default: TestEnvironment } = jsdom; | ||
|
||
export default TestEnvironment; |
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,2 +1 @@ | ||
// Fallback for Jest 27.x.x | ||
module.exports = require('./dist/environment/listener'); | ||
module.exports = require('./dist/environment/listener').default; |
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 @@ | ||
import environmentListener from './dist/environment/listener.js'; | ||
|
||
const { default: listener } = environmentListener; | ||
|
||
export default listener; |
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,2 +1 @@ | ||
// Fallback for Jest 27.x.x | ||
module.exports = require('./dist/environment/node'); | ||
module.exports = require('./dist/environment/node').default; |
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 @@ | ||
import node from './dist/environment/node.js'; | ||
|
||
const { default: TestEnvironment } = node; | ||
|
||
export default TestEnvironment; |
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,45 @@ | ||
import * as api from './dist/api'; | ||
|
||
declare global { | ||
namespace NodeJS { | ||
interface Global { | ||
// Runtime API | ||
allure: typeof api.allure; | ||
// Pseudo-annotations | ||
$Description: typeof api.$Description; | ||
$DescriptionHtml: typeof api.$DescriptionHtml; | ||
$Epic: typeof api.$Epic; | ||
$Feature: typeof api.$Feature; | ||
$Issue: typeof api.$Issue; | ||
$Link: typeof api.$Link; | ||
$Owner: typeof api.$Owner; | ||
$Severity: typeof api.$Severity; | ||
$Story: typeof api.$Story; | ||
$Tag: typeof api.$Tag; | ||
$TmsLink: typeof api.$TmsLink; | ||
// Decorators | ||
Attachment: typeof api.Attachment; | ||
FileAttachment: typeof api.FileAttachment; | ||
Step: typeof api.Step; | ||
} | ||
} | ||
|
||
// Runtime API | ||
var allure: typeof api.allure; | ||
// Pseudo-annotations | ||
var $Description: typeof api.$Description; | ||
var $DescriptionHtml: typeof api.$DescriptionHtml; | ||
var $Epic: typeof api.$Epic; | ||
var $Feature: typeof api.$Feature; | ||
var $Issue: typeof api.$Issue; | ||
var $Link: typeof api.$Link; | ||
var $Owner: typeof api.$Owner; | ||
var $Severity: typeof api.$Severity; | ||
var $Story: typeof api.$Story; | ||
var $Tag: typeof api.$Tag; | ||
var $TmsLink: typeof api.$TmsLink; | ||
// Decorators | ||
var Attachment: typeof api.Attachment; | ||
var FileAttachment: typeof api.FileAttachment; | ||
var Step: typeof api.Step; | ||
} |
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 @@ | ||
module.exports = {}; |
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 @@ | ||
export default {}; |
Oops, something went wrong.