1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-05-06 18:04:03 +00:00

Improve comments in tests

This commit is contained in:
lukinovec 2026-04-21 12:03:11 +02:00
parent c5683d8e00
commit 8276f3b008

View file

@ -96,7 +96,8 @@ test('all channels included in the log stack get processed correctly', function
// By default, both paths are the same in the config. // By default, both paths are the same in the config.
// Note that in actual usage, the daily log file name is parsed differently from the path in the config, // Note that in actual usage, the daily log file name is parsed differently from the path in the config,
// but the paths *in the config* are the same. // e.g. if daily channel has 'path' => storage_path('logs/laravel.log') in config, the log will be
// located at storage_path('logs/laravel-2026-01-01.log'). But the paths *in the config* are the same.
expect($centralLogPath) expect($centralLogPath)
->toBe($centralStoragePath . '/logs/laravel.log') ->toBe($centralStoragePath . '/logs/laravel.log')
->toBe($originalSinglePath) ->toBe($originalSinglePath)
@ -161,7 +162,7 @@ test('channel overrides work correctly with both arrays and closures', function
// After tenancy ends, the original config should be restored // After tenancy ends, the original config should be restored
expect(config('logging.channels.slack.url'))->toBe($originalSlackUrl); expect(config('logging.channels.slack.url'))->toBe($originalSlackUrl);
expect(config('logging.channels.single.path'))->toBe($originalSinglePath); expect(config('logging.channels.single.path'))->toBe($originalSinglePath);
expect(config('logging.channels.slack.username'))->toBe('Default'); // Not changed at all expect(config('logging.channels.slack.username'))->toBe('Default'); // Unchanged
}); });
test('channel config keys remain unchanged if the specified tenant override attribute is null', function() { test('channel config keys remain unchanged if the specified tenant override attribute is null', function() {