Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
Soare-Robert-Daniel committed Mar 14, 2024
1 parent a11091d commit ed06e5e
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/e2e/specs/admin.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
* WordPress dependencies
*/
const { test, expect } = require( '@wordpress/e2e-test-utils-playwright' );

/**
* Internal dependencies
*/
const { createChartWithAdmin, deleteAllCharts, waitForLibraryToLoad, createAllFreeCharts } = require('../utils/common');

test.describe( 'Chart Library', () => {
Expand Down
4 changes: 4 additions & 0 deletions tests/e2e/specs/chart-sources.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
* WordPress dependencies
*/
const { test, expect } = require( '@wordpress/e2e-test-utils-playwright' );

/**
* Internal dependencies
*/
const { deleteAllCharts, getAssetFilePath, CHART_JS_LABELS, selectChartAdmin } = require('../utils/common');

test.describe( 'Data Free Sources', () => {
Expand Down
4 changes: 4 additions & 0 deletions tests/e2e/specs/classic-editor.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
* WordPress dependencies
*/
const { test, expect } = require( '@wordpress/e2e-test-utils-playwright' );

/**
* Internal dependencies
*/
const { deleteAllCharts, createChartWithAdmin } = require('../utils/common');

test.describe( 'Charts with Classic Editor', () => {
Expand Down
4 changes: 4 additions & 0 deletions tests/e2e/specs/gutenberg-editor.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
* WordPress dependencies
*/
const { test, expect } = require( '@wordpress/e2e-test-utils-playwright' );

/**
* Internal dependencies
*/
const { createChartWithAdmin, deleteAllCharts } = require('../utils/common');

test.describe( 'Charts with Gutenberg Editor', () => {
Expand Down
4 changes: 4 additions & 0 deletions tests/e2e/utils/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
*/
const { Admin, expect, RequestUtils } = require( '@wordpress/e2e-test-utils-playwright' );


/**
* Internal dependencies
*/
const path = require('path');
const os = require('os');

Expand Down

0 comments on commit ed06e5e

Please sign in to comment.