Fix tests for now-deprecated stylus package.

The last version of stylus published did not contain a version of the
caching-compiler package that these tests now depend on, so I've removed
the extra architecture matching for the stylus package (not for less).
This commit is contained in:
Ben Newman
2018-01-14 16:09:54 -05:00
parent 5d22e1d25f
commit 697a918dc3
2 changed files with 3 additions and 2 deletions

View File

@@ -4,6 +4,6 @@
# but you can also edit it by hand.
meteor-base
stylus
stylus@~2.513.13
local-pack
standard-minifiers

View File

@@ -146,7 +146,8 @@ selftest.define("compiler plugin caching - coffee", () => {
cacheMatch(
"Ran (#" + nextRunOrdinal++ + ") on: " +
JSON.stringify(files) +
(arch ? " " + JSON.stringify([arch]) : "")
((arch && packageName !== "stylus")
? " " + JSON.stringify([arch]) : "")
);
}