Skip to content

Commit

Permalink
Fix workflow_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham committed Dec 25, 2023
1 parent 8725cd2 commit 672d6ff
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions workflow_tests/assertions/testBuildAssertions.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,13 +186,13 @@ const assertIOSJobExecuted = (workflowResult, ref = '', didExecute = true, fails
],
[],
),
utils.createStepAssertion('Decrypt AppStore profile', true, null, 'IOS', 'Decrypt AppStore profile', [], [{key: 'LARGE_SECRET_PASSPHRASE', value: '***'}]),
utils.createStepAssertion('Decrypt AdHoc profile', true, null, 'IOS', 'Decrypt AdHoc profile', [], [{key: 'LARGE_SECRET_PASSPHRASE', value: '***'}]),
utils.createStepAssertion(
'Decrypt AppStore Notification Service profile',
'Decrypt AdHoc Notification Service profile',
true,
null,
'IOS',
'Decrypt AppStore Notification Service profile',
'Decrypt AdHoc Notification Service profile',
[],
[{key: 'LARGE_SECRET_PASSPHRASE', value: '***'}],
),
Expand Down
12 changes: 6 additions & 6 deletions workflow_tests/mocks/testBuildMocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ const TESTBUILD__IOS__COMPARE_PODFILE_AND_MANIFEST__STEP_MOCK = utils.createMock
IS_PODFILE_SAME_AS_MANIFEST: false,
});
const TESTBUILD__IOS__INSTALL_COCOAPODS__STEP_MOCK = utils.createMockStep('Install cocoapods', 'Install cocoapods', 'IOS', ['timeout_minutes', 'max_attempts', 'command'], []);
const TESTBUILD__IOS__DECRYPT_APPSTORE_PROFILE__STEP_MOCK = utils.createMockStep('Decrypt AppStore profile', 'Decrypt AppStore profile', 'IOS', [], ['LARGE_SECRET_PASSPHRASE']);
const TESTBUILD__IOS__DECRYPT_APPSTORE_NSE_PROFILE__STEP_MOCK = utils.createMockStep(
'Decrypt AppStore Notification Service profile',
'Decrypt AppStore Notification Service profile',
const TESTBUILD__IOS__DECRYPT_ADHOC_PROFILE__STEP_MOCK = utils.createMockStep('Decrypt AdHoc profile', 'Decrypt AdHoc profile', 'IOS', [], ['LARGE_SECRET_PASSPHRASE']);
const TESTBUILD__IOS__DECRYPT_ADHOC_NSE_PROFILE__STEP_MOCK = utils.createMockStep(
'Decrypt AdHoc Notification Service profile',
'Decrypt AdHoc Notification Service profile',
'IOS',
[],
['LARGE_SECRET_PASSPHRASE'],
Expand All @@ -144,8 +144,8 @@ const TESTBUILD__IOS__STEP_MOCKS = [
TESTBUILD__IOS__CACHE_POD_DEPENDENCIES__STEP_MOCK,
TESTBUILD__IOS__COMPARE_PODFILE_AND_MANIFEST__STEP_MOCK,
TESTBUILD__IOS__INSTALL_COCOAPODS__STEP_MOCK,
TESTBUILD__IOS__DECRYPT_APPSTORE_PROFILE__STEP_MOCK,
TESTBUILD__IOS__DECRYPT_APPSTORE_NSE_PROFILE__STEP_MOCK,
TESTBUILD__IOS__DECRYPT_ADHOC_PROFILE__STEP_MOCK,
TESTBUILD__IOS__DECRYPT_ADHOC_NSE_PROFILE__STEP_MOCK,
TESTBUILD__IOS__DECRYPT_CERTIFICATE__STEP_MOCK,
TESTBUILD__IOS__CONFIGURE_AWS_CREDENTIALS__STEP_MOCK,
TESTBUILD__IOS__RUN_FASTLANE__STEP_MOCK,
Expand Down

0 comments on commit 672d6ff

Please sign in to comment.