Update unicode asset sanitization tests (and History.md).

This commit is contained in:
Ben Newman
2017-06-06 11:48:42 -04:00
committed by Ben Newman
parent a2f26cbe6e
commit cdc047bbc7
2 changed files with 8 additions and 3 deletions

View File

@@ -33,6 +33,11 @@
* The `reify` npm package has been upgraded to version 0.11.22.
* Illegal characters in paths written in build output directories will now
be replaced with `_`s rather than removed, so that file and directory
names consisting of only illegal characters do not become empty
strings. [PR #8765](https://github.com/meteor/meteor/pull/8765).
## v1.5, 2017-05-30
* The `meteor-base` package implies a new `dynamic-import` package, which

View File

@@ -23,9 +23,9 @@ selftest.define("assets - unicode asset names are allowed", () => {
run.match('1 - getText: Hello world!');
run.match('2 - getText: Hello world!');
run.match('3 - getText: Hello world!');
run.match(/1 - absoluteFilePath:(.*)maaverde.txt/);
run.match(/2 - absoluteFilePath:(.*)maaverde.txt/);
run.match(/3 - absoluteFilePath:(.*)maaverde.txt/);
run.match(/1 - absoluteFilePath:(.*)ma_a_verde.txt/);
run.match(/2 - absoluteFilePath:(.*)ma_a_verde.txt/);
run.match(/3 - absoluteFilePath:(.*)ma_a_verde.txt/);
run.stop();
});