Skip to content

Commit

Permalink
update with badges. Each test is in its own project.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogJ committed Jun 21, 2024
1 parent 648592c commit fecb286
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 6 deletions.
8 changes: 4 additions & 4 deletions PLATFORM_LIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ This list of platforms is sourced from various locations, including:



| Platform Name | Developer Account | Sandbox Status | Production Status | Endpoint Count |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------|------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------|------------------------------------------------------------------------------------|
| [AbeoSolutions/Crystal PM](https://www.crystalpm.com/FHIRServiceURLs.csv) | | | | |
| [Aetna](https://www.aetna.com) | :white_check_mark: | :white_check_mark: | :white_check_mark: - Medicare users only | 1 R4 |
| Platform Name | Developer Account | Sandbox Status | Production Status | Endpoint Count | Sandbox Status |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------|------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------|------------------------------------------------------------------------------------|----------------|
| [AbeoSolutions/Crystal PM](https://www.crystalpm.com/FHIRServiceURLs.csv) | | | | | |
| [Aetna](https://www.aetna.com) | :white_check_mark: | :white_check_mark: | :white_check_mark: - Medicare users only | 1 R4 | [![BrowserStack Status](https://automate.browserstack.com/badge.svg?badge_key=YU92c1l1OHNrdHcyR1ZqN1J3amZkMjhBYkZXZDQwZGJuemJGclFBdzBlST0tLXFyaTNIMG9IMVhsbG5HT3EzY2JGaGc9PQ==--1cf8d868305182b490dee9c139aefa9960db6483)](https://automate.browserstack.com/public-build/YU92c1l1OHNrdHcyR1ZqN1J3amZkMjhBYkZXZDQwZGJuemJGclFBdzBlST0tLXFyaTNIMG9IMVhsbG5HT3EzY2JGaGc9PQ==--1cf8d868305182b490dee9c139aefa9960db6483) |
| [Allscripts](https://open.allscripts.com/fhirendpoints) | :white_check_mark: | :white_check_mark: | :white_check_mark: | 32 R4 / 3469 DSTU2 |
| [Altera](https://open.allscripts.com/fhirendpoints) | :white_check_mark: | :white_check_mark: | :white_check_mark: | 135 R4 |
| [Anthem](https://patient360.anthem.com/P360Member/fhir/endpoints) | :white_check_mark: | :white_check_mark: | :white_check_mark: | 57 R4 |
Expand Down
2 changes: 1 addition & 1 deletion js/e2e/browserstack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const patchCaps = (name, title) => {
caps.os_version = browser_version ? browser_version : 'latest';
caps.os = os ? os : 'osx';
caps.os_version = os_version ? os_version : 'catalina';
caps.name = title;
caps.project = title;
};

export function getCdpEndpoint(name, title){
Expand Down
80 changes: 79 additions & 1 deletion js/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,86 @@ export default {
projects: [
{
name: 'chrome@latest:Windows 11',
testMatch: /.*aetna_test.ts/,
use: {
connectOptions: { wsEndpoint: getCdpEndpoint('chrome@latest:Windows 11','test1') },
connectOptions: { wsEndpoint: getCdpEndpoint('chrome@latest:Windows 11','aetna') },
},
},
{
name: 'chrome@latest:Windows 11',
testMatch: /.*allscripts_test.ts/,
use: {
connectOptions: { wsEndpoint: getCdpEndpoint('chrome@latest:Windows 11','allscripts') },
},
},
{
name: 'chrome@latest:Windows 11',
testMatch: /.*athena_test.ts/,
use: {
connectOptions: { wsEndpoint: getCdpEndpoint('chrome@latest:Windows 11','athena') },
},
},
{
name: 'chrome@latest:Windows 11',
testMatch: /.*careevolution_test.ts/,
use: {
connectOptions: { wsEndpoint: getCdpEndpoint('chrome@latest:Windows 11','careevolution') },
},
},
{
name: 'chrome@latest:Windows 11',
testMatch: /.*cerner_test.ts/,
use: {
connectOptions: { wsEndpoint: getCdpEndpoint('chrome@latest:Windows 11','cerner') },
},
},
{
name: 'chrome@latest:Windows 11',
testMatch: /.*cigna_test.ts/,
use: {
connectOptions: { wsEndpoint: getCdpEndpoint('chrome@latest:Windows 11','cigna') },
},
},
{
name: 'chrome@latest:Windows 11',
testMatch: /.*eclinicalworks_test.ts/,
use: {
connectOptions: { wsEndpoint: getCdpEndpoint('chrome@latest:Windows 11','eclinicalworks') },
},
},
{
name: 'chrome@latest:Windows 11',
testMatch: /.*epic_legacy_test.ts/,
use: {
connectOptions: { wsEndpoint: getCdpEndpoint('chrome@latest:Windows 11','epic-legacy') },
},
},
{
name: 'chrome@latest:Windows 11',
testMatch: /.*kaiser_test.ts/,
use: {
connectOptions: { wsEndpoint: getCdpEndpoint('chrome@latest:Windows 11','kaiser') },
},
},
{
name: 'chrome@latest:Windows 11',
testMatch: /.*medicare_test.ts/,
use: {
connectOptions: { wsEndpoint: getCdpEndpoint('chrome@latest:Windows 11','medicare') },
},
},
{
name: 'chrome@latest:Windows 11',
testMatch: /.*nextgen_test.ts/,
use: {
connectOptions: { wsEndpoint: getCdpEndpoint('chrome@latest:Windows 11','nextgen') },
},
},
{
name: 'chrome@latest:Windows 11',
testMatch: /.*vahealth_test.ts/,
use: {
connectOptions: { wsEndpoint: getCdpEndpoint('chrome@latest:Windows 11','vahealth') },
},
}
// {
Expand Down

0 comments on commit fecb286

Please sign in to comment.