Skip to content

Commit aced6a9

Browse files
Fix pipeline
Co-authored-by: SrinivasanTarget <srinivasan.sekar1990@gmail.com>
1 parent f6e30d4 commit aced6a9

6 files changed

Lines changed: 8 additions & 6 deletions

File tree

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ jobs:
4747
xcrun simctl boot $target_sim_id
4848
xcrun simctl bootstatus $target_sim_id -b
4949
npm install -g appium@2.19.0
50+
npm run build-flutter-by-service
5051
npm install --no-package-lock
5152
npm run build
5253
appium driver list

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
sudo udevadm trigger --name-match=kvm
4242
- name: Linting
4343
run: |
44+
npm run build-flutter-by-service
4445
npm install --no-package-lock
4546
npm run prettier-check
4647
- name: Build Driver
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"root":["../src/demo.ts","../src/index.ts","../src/methods.ts","../src/service.ts","../src/types.ts","../src/utils.ts","../test_remove/specs/test.e2e.js"],"version":"5.9.2"}
1+
{"root":["../src/demo.ts","../src/index.ts","../src/methods.ts","../src/service.ts","../src/types.ts","../src/utils.ts"],"version":"5.9.2"}

flutter-finder/wdio-flutter-by-service/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88
"exports": {
99
".": [
1010
{
11-
"types": "./build/src/index.d.ts",
12-
"import": "./build/src/index.js"
11+
"types": "./build/index.d.ts",
12+
"import": "./build/index.js"
1313
}
1414
],
1515
"./package.json": "./package.json"
1616
},
1717
"type": "module",
1818
"keywords": [],
1919
"author": "",
20-
"types": "./build/src/index.d.ts",
20+
"types": "./build/index.d.ts",
2121
"license": "MIT License",
2222
"dependencies": {
2323
"@wdio/globals": "9.17.0",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"install-driver": "npm run build && appium driver install --source=local $(pwd)",
4848
"reinstall-driver": "(appium driver uninstall flutter-integration || exit 0) && npm run install-driver",
4949
"wdio-android": "wdio run ./android.conf.ts",
50-
"wdio-ios": "npm run build-flutter-by-service && wdio run ./ios.conf.ts",
50+
"wdio-ios": "wdio run ./ios.conf.ts",
5151
"build-flutter-by-service": "cd ./flutter-finder/wdio-flutter-by-service && npm install --no-package-lock && npm run build"
5252
},
5353
"devDependencies": {

test/specs/test.e2e.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ describe('My Login application', () => {
127127
});
128128
expect(await childElement.getText()).toEqual('Child 2');
129129
});
130-
it.only('Ancestor Test', async () => {
130+
it('Ancestor Test', async () => {
131131
await performLogin();
132132
await openScreen('Nested Scroll');
133133
const parentElement = await browser.flutterByAncestor$({

0 commit comments

Comments
 (0)