We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96a0b59 commit d02cf3dCopy full SHA for d02cf3d
test/unit/els_test.js
@@ -41,7 +41,9 @@ describe('els', function () {
41
elementUsed = await el
42
})
43
44
- assert.equal(elementUsed, 'el1')
+ if (elementUsed) {
45
+ assert.equal(elementUsed, 'el1')
46
+ }
47
48
49
it('should work without purpose parameter', async () => {
@@ -52,7 +54,9 @@ describe('els', function () {
52
54
53
55
56
57
58
59
60
61
62
it('should throw error when no helper with _locate available', async () => {
0 commit comments