Skip to content

Commit d3d2106

Browse files
webzwo0irhansen
authored andcommitted
easysync tests: Convert IIFE into a describe()
1 parent f3180a4 commit d3d2106

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tests/frontend/specs/easysync.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ describe('easysync', function () {
596596
expect(cs12).to.equal('Z:2>1+1*0|1=2$x');
597597
});
598598

599-
(() => {
599+
describe('followAttributes & composeAttributes', function () {
600600
const p = new AttributePool();
601601
p.putAttrib(['x', '']);
602602
p.putAttrib(['x', 'abc']);
@@ -623,7 +623,7 @@ describe('easysync', function () {
623623
testFollow('*0*1', '', '', '*0*1', '*0*1');
624624
testFollow('*0*4', '*2*3', '*3', '*0', '*0*3');
625625
testFollow('*0*4', '*2', '', '*0*4', '*0*4');
626-
})();
626+
});
627627

628628
const testFollow = (randomSeed) => {
629629
it(`testFollow#${randomSeed}`, async function () {

0 commit comments

Comments
 (0)