From 3ad7d6d053f8c7a990226969a8b0881869e3d665 Mon Sep 17 00:00:00 2001 From: Frederico Maia Date: Fri, 26 Apr 2024 15:32:26 -0300 Subject: [PATCH 1/2] Update Meteor 3.0 to RC in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 13b4dad25b..81bbe3ebfa 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ [![Travis CI Status](https://api.travis-ci.com/meteor/meteor.svg?branch=devel)](https://app.travis-ci.com/github/meteor/meteor) [![CircleCI Status](https://circleci.com/gh/meteor/meteor.svg?style=svg)](https://app.circleci.com/pipelines/github/meteor/meteor?branch=devel) [![built with Meteor](https://img.shields.io/badge/Meteor-2.15-green?logo=meteor&logoColor=white)](https://meteor.com) -[![built with Meteor](https://img.shields.io/badge/Meteor-3.0_beta-yellow?logo=meteor&logoColor=white)](https://guide.meteor.com/3.0-migration) +[![built with Meteor](https://img.shields.io/badge/Meteor-3.0_RC-yellow?logo=meteor&logoColor=white)](https://guide.meteor.com/3.0-migration) From 779727f9dd78e34980943b75883ec6d7742d9b84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Tue, 30 Apr 2024 18:06:44 +0200 Subject: [PATCH 2/2] fix test flackiness --- packages/mongo/mongo_livedata_tests.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/mongo/mongo_livedata_tests.js b/packages/mongo/mongo_livedata_tests.js index 9e8d491a3a..2f914c5422 100644 --- a/packages/mongo/mongo_livedata_tests.js +++ b/packages/mongo/mongo_livedata_tests.js @@ -4348,7 +4348,7 @@ testAsyncMulti( itemIds = items.map(_item => _item._id); test.equal(itemIds, []); // data IS NOT persisted resolve(); - }, 700); + }, 1500); }); } @@ -4390,7 +4390,7 @@ testAsyncMulti( itemIds = items.map(_item => _item._id); test.equal(itemIds, ['a']); // data is persisted resolve(); - }, 700); + }, 1500); }); } @@ -4449,7 +4449,7 @@ testAsyncMulti( itemIds = items.map(_item => _item._id); test.equal(itemIds, []); // data IS NOT persisted resolve(); - }, 700); + }, 1500); }); } } else {