8000 [Asset] Adding a new version strategy that reads from a manifest JSON file by weaverryan · Pull Request #22046 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Asset] Adding a new version strategy that reads from a manifest JSON file #22046

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 14 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Removing .json from extension of a file to work around fabbot not lik…
…ing the invalid JSON
  • Loading branch information
weaverryan committed Mar 23, 2017
commit 6d1954940d2a2a3d5db74e952d000279c0bab4ad
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function testMissingManifestFileThrowsException()
*/
public function testManifestFileWithBadJSONThrowsException()
{
$strategy = $this->createStrategy('manifest-invalid.json');
$strategy = $this->createStrategy('manifest-invalid.json.invalid');
$strategy->getVersion('main.js');
}

Expand Down
0