Skip to content

Commit 72d17e1

Browse files
committed
Fix functional tests with quotes in strings
1 parent 496c8b0 commit 72d17e1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/functional/compass-functional.test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ describe('Compass Main Functional Test Suite #spectron', function() {
539539
.clickInsertDocumentModalButton()
540540
.waitForDocumentInsert(1)
541541
.getDocumentValues(1)
542-
.should.eventually.include('Aphex Twin');
542+
.should.eventually.include('\"Aphex Twin\"');
543543
});
544544
});
545545

@@ -569,7 +569,7 @@ describe('Compass Main Functional Test Suite #spectron', function() {
569569
.clickUpdateDocumentButton(1)
570570
.waitForDocumentUpdate(1)
571571
.getDocumentValues(1)
572-
.should.eventually.include('Aphex Twin (edited)');
572+
.should.eventually.include('\"Aphex Twin (edited)\"');
573573
});
574574
});
575575

@@ -582,7 +582,7 @@ describe('Compass Main Functional Test Suite #spectron', function() {
582582
.clickInsertDocumentModalButton()
583583
.waitForDocumentInsert(2)
584584
.getDocumentValues(2)
585-
.should.eventually.include('Essex');
585+
.should.eventually.include('\"Essex\"');
586586
});
587587
});
588588

@@ -854,7 +854,7 @@ describe('Compass Main Functional Test Suite #spectron', function() {
854854
.clickResetFilterButtonFromDocumentsTab()
855855
.waitForStatusBar()
856856
.getDocumentValues(3)
857-
.should.eventually.include('George Michael');
857+
.should.eventually.include('\"George Michael\"');
858858
});
859859
});
860860
});

0 commit comments

Comments
 (0)