Skip to content

Commit d0754d8

Browse files
committed
Fix prettier and other ci issues
1 parent 7ac96b1 commit d0754d8

File tree

5 files changed

+3
-19
lines changed

5 files changed

+3
-19
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,3 @@ jobs:
3737
run: npm ci
3838
- name: Run Bundler tests
3939
run: npm run test.bundler
40-
41-

src/testing/jest/jest-28/jest-runner.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,7 @@ export async function runJest(config: d.ValidatedConfig, env: d.E2EProcessEnv) {
5353
*/
5454
export function createTestRunner(): JestTestRunnerConstructor {
5555
class StencilTestRunner extends TestRunner {
56-
override async runTests(
57-
tests: { context: any; path: string }[],
58-
watcher: any,
59-
options: any,
60-
) {
56+
override async runTests(tests: { context: any; path: string }[], watcher: any, options: any) {
6157
const env = process.env as d.E2EProcessEnv;
6258

6359
// filter out only the tests the flags said we should run

src/testing/jest/jest-29/jest-runner.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,7 @@ export async function runJest(config: d.ValidatedConfig, env: d.E2EProcessEnv) {
5353
*/
5454
export function createTestRunner(): JestTestRunnerConstructor {
5555
class StencilTestRunner extends TestRunner {
56-
override async runTests(
57-
tests: { context: any; path: string }[],
58-
watcher: any,
59-
options: any,
60-
) {
56+
override async runTests(tests: { context: any; path: string }[], watcher: any, options: any) {
6157
const env = process.env as d.E2EProcessEnv;
6258

6359
// filter out only the tests the flags said we should run

test/bundler/jest-dom-utils.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,5 +83,3 @@ export function setupDomTests(document: Document): DomTestUtilities {
8383

8484
return { setupDom, tearDownDom };
8585
}
86-
87-

test/bundler/jest.config.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@ const path = require('path');
22
const base = require('../../jest.config.js');
33

44
const rootDir = path.resolve(__dirname, '../..');
5-
const modulePathIgnorePatterns = (base.modulePathIgnorePatterns || []).filter(
6-
(p) => !/\<rootDir\>\/test\//.test(p)
7-
);
5+
const modulePathIgnorePatterns = (base.modulePathIgnorePatterns || []).filter((p) => !/\<rootDir\>\/test\//.test(p));
86

97
module.exports = {
108
rootDir,
@@ -17,5 +15,3 @@ module.exports = {
1715
modulePathIgnorePatterns,
1816
testRegex: '/test/bundler/.*\\.spec\\.ts$',
1917
};
20-
21-

0 commit comments

Comments
 (0)