diff --git a/tests/Countries/NepalTest.php b/tests/Countries/NepalTest.php index b1bf9883..d0d2681c 100644 --- a/tests/Countries/NepalTest.php +++ b/tests/Countries/NepalTest.php @@ -25,3 +25,9 @@ expect(formatDates($holidays))->toMatchSnapshot(); }); + +it('checks for holidays in Nepal for 2025', function () { + $isHoliday = Holidays::for('np')->isHoliday('2025-03-13'); + + expect($isHoliday)->toBeTrue(); +});