File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -158,9 +158,16 @@ jobs:
158
158
PACKAGE_NAME : ${{ matrix.working-directory == 'fabricexample' && 'com.fabricexample' || 'com.rnskia' }}
159
159
run : adb shell monkey -p ${{ env.PACKAGE_NAME }} 1
160
160
161
+ # On fabric, the system fonts are slightly different
162
+ # so wont run the paragraph tests there for now
161
163
- name : Run e2e Tests
162
164
working-directory : package
163
- run : CI=true yarn e2e
165
+ run : |
166
+ if [ "${{ matrix.working-directory }}" = "example" ]; then
167
+ CI=true yarn e2e
168
+ elif [ "${{ matrix.working-directory }}" = "fabricexample" ]; then
169
+ CI=true yarn e2e --testPathIgnorePatterns Paragraphs
170
+ fi
164
171
165
172
- uses : actions/upload-artifact@v2
166
173
if : failure()
Original file line number Diff line number Diff line change 44
44
#include " JsiSkShaderFactory.h"
45
45
#include " JsiSkSurfaceFactory.h"
46
46
#include " JsiSkTextBlobFactory.h"
47
- #include " JsiSkTypeFaceFontProviderFactory.h"
48
47
#include " JsiSkTypeface.h"
49
48
#include " JsiSkTypefaceFactory.h"
49
+ #include " JsiSkTypefaceFontProviderFactory.h"
50
50
#include " JsiSkVertices.h"
51
51
52
52
namespace RNSkia {
Original file line number Diff line number Diff line change 7
7
8
8
#include " JsiSkData.h"
9
9
#include " JsiSkHostObjects.h"
10
- #include " JsiSkTypeFaceFontProvider .h"
10
+ #include " JsiSkTypefaceFontProvider .h"
11
11
12
12
namespace RNSkia {
13
13
You can’t perform that action at this time.
0 commit comments