Merge branch 'feature/cli_support_non_interactive_mode' of github.com:reply2future/simplex-chat into reply2future-feature/cli_support_non_interactive_mode

This commit is contained in:
Evgeny Poberezkin
2024-11-30 20:19:12 +00:00
7 changed files with 35 additions and 15 deletions
+1
View File
@@ -74,6 +74,7 @@ testOpts =
ChatOpts
{ coreOptions = testCoreOpts,
deviceName = Nothing,
displayName = Nothing,
chatCmd = "",
chatCmdDelay = 3,
chatCmdLog = CCLNone,
+3 -3
View File
@@ -224,9 +224,9 @@ testMultiWordProfileNames =
alice #> "@'Cath J' hi"
cath <# "'Alice Jones'> hi"
where
aliceProfile' = baseProfile {displayName = "Alice Jones"}
bobProfile' = baseProfile {displayName = "Bob James"}
cathProfile' = baseProfile {displayName = "Cath Johnson"}
aliceProfile' = (baseProfile :: Profile) {displayName = "Alice Jones"}
bobProfile' = (baseProfile :: Profile) {displayName = "Bob James"}
cathProfile' = (baseProfile :: Profile) {displayName = "Cath Johnson"}
baseProfile = Profile {displayName = "", fullName = "", image = Nothing, contactLink = Nothing, preferences = defaultPrefs}
testUserContactLink :: HasCallStack => FilePath -> IO ()