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

Move the charts workload out of the tentative directory #252

Merged
merged 1 commit into from
Jun 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ package-lock.json
**/.angular

/resources/tentative/*
!/resources/tentative/charts

/resources/todomvc/architecture-examples/*
!/resources/todomvc/architecture-examples/angular
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
/resources/todomvc/vanilla-examples/javascript-es6/node_modules/
/resources/todomvc/vanilla-examples/javascript-es6-webpack/node_modules/

/resources/tentative/charts/node_modules/
/resources/charts/node_modules/
1 change: 0 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ package-lock.json
**/.angular

/resources/tentative/*
!/resources/tentative/charts

/resources/todomvc/architecture-examples/*
!/resources/todomvc/architecture-examples/angular
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ convenient to open these benchmarks with their specific files.

You can load this benchmark with the `/observable-plot.html` page, for example
http://localhost:5173/observable-plot.html if you run it locally or
http://localhost:7000/resources/tentative/charts/dist/observable-plot.html in the
http://localhost:7000/resources/charts/dist/observable-plot.html in the
context of the speedometer.

Observable Plot is D3-based and outputs SVG.
Expand All @@ -63,7 +63,7 @@ US. You can consult them in the [datasets directory](./datasets).

You can load this benchmark with the `/chartjs.html` page, for example
http://localhost:5173/chartjs.html if you run it locally or
http://localhost:7000/resources/tentative/charts/dist/chartjs.html in the
http://localhost:7000/resources/charts/dist/chartjs.html in the
context of speedometer.

ChartJS is canvas-based.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions resources/tests.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ Suites.push({

Suites.push({
name: "Charts-observable-plot",
url: "tentative/charts/dist/observable-plot.html",
url: "charts/dist/observable-plot.html",
tags: ["chart"],
async prepare(page) {},
tests: [
Expand Down Expand Up @@ -557,7 +557,7 @@ Suites.push({

Suites.push({
name: "Charts-chartjs",
url: "tentative/charts/dist/chartjs.html",
url: "charts/dist/chartjs.html",
tags: ["chart"],
async prepare(page) {},
tests: [
Expand Down