Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mocks for plugins #206

Merged
merged 44 commits into from
Nov 21, 2023
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
3648a4d
added mocks for external action and pubsub
Oct 25, 2023
0d148f0
modified build
Oct 25, 2023
1da2bf4
Merge branch 'main' into mocksForPlugins
mercillo Oct 25, 2023
d03b5f3
pubsub build modified
Oct 25, 2023
a12cd1e
updated pubsub flow
Oct 30, 2023
7e28e3e
add user info to assetViewModel
Oct 24, 2023
8152b9f
address comments
Oct 25, 2023
afddeae
update tests
Oct 25, 2023
fca3933
update doc
Oct 25, 2023
00939af
apply swift 6 warning fix to flaky iOS tests (#207)
hborawski Oct 27, 2023
68df800
update Gemfile.lock (#208)
hborawski Oct 27, 2023
a51c160
renamed folder structure for plugin mocks
Nov 3, 2023
7a99386
store cancellables in ManagedPlayerViewModelTests (#210)
hborawski Oct 31, 2023
43b0396
Singular workflow for CI (#214)
brocollie08 Nov 2, 2023
9c07351
WIP, plugin demo app
Nov 7, 2023
0f9637f
generate manifest for mocks
Nov 7, 2023
21edcdb
fixed typo in build file
Nov 7, 2023
3c2e9b6
Merge branch 'main' into mocksForPlugins
mercillo Nov 7, 2023
4d9ada3
Merge branch 'main' into mocksForPlugins
mercillo Nov 7, 2023
99ae380
modified mocks reader
Nov 7, 2023
605df1b
updated test dependencies
Nov 8, 2023
206cfc7
added dependency for all plugin tests to work with simpleFlow
Nov 8, 2023
be4fe4a
reference assets needed
Nov 8, 2023
7e87a0f
more dependencies for tests
Nov 8, 2023
bd33720
modified test names
Nov 8, 2023
2d7b38b
Merge branch 'main' into mocksForPlugins
mercillo Nov 8, 2023
451adaf
modified test names
Nov 9, 2023
dd4143e
Merge branch 'main' into mocksForPlugins
mercillo Nov 9, 2023
caf618a
removed unneeded dependencies
Nov 16, 2023
2b14916
cleaned up BUILD and index fiels
Nov 17, 2023
ffa1afd
Merge branch 'main' into mocksForPlugins
mercillo Nov 17, 2023
d429b2b
iOS: make AssetBeacon equatable and add public init for metadata (#248)
hborawski Nov 18, 2023
af597a9
Update ruby version in build (#246)
adierkens Nov 18, 2023
b818ef2
Release main
intuit-svc Nov 20, 2023
bd414d8
Update CHANGELOG.md [skip ci]
intuit-svc Nov 20, 2023
627a8d0
Bump version to: v0.4.4 [skip ci]
intuit-svc Nov 20, 2023
99bb00a
add user info to assetViewModel
Oct 24, 2023
262a1b7
address comments
Oct 25, 2023
1e55527
apply swift 6 warning fix to flaky iOS tests (#207)
hborawski Oct 27, 2023
6543efa
store cancellables in ManagedPlayerViewModelTests (#210)
hborawski Oct 31, 2023
b4c2f79
modified test names
Nov 8, 2023
9286c38
mandatory not needed
Nov 21, 2023
4b1d150
Merge branch 'main' into mocksForPlugins
mercillo Nov 21, 2023
f630cce
rebase picked up wrong file changes
Nov 21, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update tests
  • Loading branch information
zwu01 authored and mercillo committed Oct 30, 2023
commit afddeaeb28da1e6e39d45d7d19bebaf49eabcbd3
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class InputAssetTests: SwiftUIAssetUnitTestCase {
validation: nil
)

let model = InputAssetViewModel(data)
let model = InputAssetViewModel(data, userInfo: [:])
let update1expect = expectation(description: "Initial value")
model.$data.sink { (data) in
guard data.value?.stringValue == "a" else { return }
Expand Down Expand Up @@ -110,7 +110,7 @@ class InputAssetTests: SwiftUIAssetUnitTestCase {
let modelRef = ModelReference(rawValue: val)
let data = InputData(id: "input", type: "input", placeholder: nil, value: modelRef, label: nil, set: nil, dataType: nil, validation: nil)

let model = InputAssetViewModel(data)
let model = InputAssetViewModel(data, userInfo: [:])

let view = InputAssetView(model: model)

Expand Down Expand Up @@ -140,7 +140,7 @@ class InputAssetTests: SwiftUIAssetUnitTestCase {
validation: nil
)

let model = InputAssetViewModel(data)
let model = InputAssetViewModel(data, userInfo: [:])

let view = await InputAssetView(model: model)

Expand Down Expand Up @@ -176,7 +176,7 @@ class InputAssetTests: SwiftUIAssetUnitTestCase {
validation: validation
)

let model = InputAssetViewModel(data)
let model = InputAssetViewModel(data, userInfo: [:])

let view = InputAssetView(model: model)

Expand Down Expand Up @@ -204,7 +204,7 @@ class InputAssetTests: SwiftUIAssetUnitTestCase {

let data = InputData(id: "input", type: "input", placeholder: nil, value: nil, label: nil, set: wrapper, dataType: nil, validation: nil)

let model = InputAssetViewModel(data)
let model = InputAssetViewModel(data, userInfo: [:])

let view = InputAssetView(model: model)

Expand All @@ -226,7 +226,7 @@ class InputAssetTests: SwiftUIAssetUnitTestCase {

let data = InputData(id: "input", type: "input", placeholder: nil, value: nil, label: nil, set: wrapper, dataType: nil, validation: nil)

let model = InputAssetViewModel(data)
let model = InputAssetViewModel(data, userInfo: [:])

let view = InputAssetView(model: model)

Expand Down