Simplified test.

Spacing changed after moving messagePayload to message, so test failed.
This commit is contained in:
mike cullerton 2022-08-12 12:52:24 -04:00
parent f0d29750d8
commit 89200853d9
1 changed files with 1 additions and 5 deletions

View File

@ -74,11 +74,7 @@ describe('Messages should work', function() {
let textArea = findTextarea('bio-properties-panel-messagePayload', payload);
expect(textArea, "Can't find the payload textarea").to.exist;
expect(textArea.value, "Can't find payload value").to.exist;
expect(textArea.value).to.equal("\n" +
" {\n" +
" 'to': { 'name': my_lover_variable }\n" +
" }\n" +
" ");
expect(textArea.value).to.include("'to': { 'name': my_lover_variable }");
});
it('should show the correlations inside the message group',async function() {