Skip to content

Commit

Permalink
Add R Plot tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jonvanausdeln committed Oct 8, 2024
1 parent 7bc76fd commit 75b298f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/smoke/src/areas/positron/plots/plots.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ title(main="Autos", col.main="red", font.main=4)`;
});


it('R - Verifies rplot plot [C720873] #web', async function () {
it('R - Verifies rplot plot [C720873] #web #win', async function () {
const app = this.app as Application;

const script = `library('corrr')
Expand All @@ -636,7 +636,7 @@ rplot(x, shape = 20, colors = c("red", "green"), legend = TRUE)`;

});

it('R - Verifies highcharter plot [C720874] #web', async function () {
it('R - Verifies highcharter plot [C720874] #web #win', async function () {
const app = this.app as Application;

const script = `library(highcharter)
Expand All @@ -649,7 +649,7 @@ hchart(mpg, "point", hcaes(x = displ, y = cty, group = year))`;

});

it('R - Verifies leaflet plot [C720875] #web', async function () {
it('R - Verifies leaflet plot [C720875] #web @win', async function () {
const app = this.app as Application;

const script = `library(leaflet)
Expand All @@ -661,7 +661,7 @@ m %>% addPopups(-93.65, 42.0285, 'Here is the <b>Department of Statistics</b>, I

});

it('R - Verifies plotly plot [C720876] #web', async function () {
it('R - Verifies plotly plot [C720876] #web #win', async function () {
const app = this.app as Application;

const script = `library(plotly)
Expand Down

0 comments on commit 75b298f

Please sign in to comment.