blob: fe88daa97061e8a0ca04e9b3f07e5516593e3e9f (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | <?php
use Lightscale\LaralightAssets\JsonManifestParser;
it('parses json', function() {
    $data = '{"main.js": "main.testing.js"}';
    $parser = new JsonManifestParser;
    $result = $parser->parse($data);
    expect($result)->toMatchArray(['main.js' => 'main.testing.js']);
});
 |