Add encrypted sauce credentials with new key (#584)

* Add encrypted sauce credentials with new key

* Remove binary workaround in ".gitattributes"

* Revert a5fd940cd9

* Use the -out syntax instead of >>

* Revert "Use the -out syntax instead of >>"

This reverts commit 7caf1de18c9103ea9c7397c1c8f0a45c31850ec6.

Is this commit causing a "npm: command not found" error in CircleCI?

* Update sauce-encrypted-env-vars to use `export`.

* Normalize `transformOrigin` result for IE11 and Safari.

* Add webkit prefixes for Safari 8 test pass.
This commit is contained in:
Fagner Brack
2016-10-02 04:34:40 +11:00
committed by John-David Dalton
parent d021b5131d
commit 53214e5849
4 changed files with 11 additions and 6 deletions

1
.gitattributes vendored
View File

@@ -1,2 +1 @@
* text=auto
sauce-encrypted-env-vars binary

View File

@@ -4,7 +4,7 @@ machine:
dependencies:
pre:
- openssl -aes-256-cbc -d -in sauce-encrypted-env-vars -out ~/.circlerc -k $SAUCE_DECRYPT_KEY
- openssl aes-256-cbc -d -in sauce-encrypted-env-vars -k $SAUCE_DECRYPT_KEY >> ~/.circlerc
test:
override:

View File

@@ -1 +1,2 @@
Salted__t
Salted__<EFBFBD><EFBFBD>IV<EFBFBD>]O<><4F><03><><EFBFBD>:bi<62>{7C<37> <0B>0<EFBFBD><30>"JB><<3C><>km<6B>ɭ/ɬ<>CLn<4C><03>]<5D>>\ܕ<><DC95>.<2E><><EFBFBD>m"<22>K<EFBFBD><4B>Z<EFBFBD>s9<1A><>Q<><51><EFBFBD>%<25>v<EFBFBD>X
7 <0C><>eX<65>c<1B><><EFBFBD><18>!w

View File

@@ -45,15 +45,20 @@
var canvasIsNotAStep = !canvas.classList.contains("step") && canvas.id === "";
assert.ok( canvasIsNotAStep, "Canvas do not have step element data" );
actual = canvas.style.transform;
actual = canvas.style.webkitTransform || canvas.style.transform;
expected = "rotateZ(0deg) rotateY(0deg) rotateX(0deg) translate3d(1000px, 0px, 0px)";
assert.strictEqual( actual, expected, "canvas.style.transform initialized correctly" );
actual = canvas.style.transformOrigin;
// Normalize result for IE 11 and Safari.
actual = canvas.style.webkitTransformOrigin || canvas.style.transformOrigin;
expected = "left top 0px";
if ( actual === "left top" || actual === "0% 0%" ) {
actual = expected;
}
assert.strictEqual( actual, expected, "canvas.style.transformOrigin initialized correctly" );
actual = canvas.style.transformStyle;
actual = canvas.style.webkitTransformStyle || canvas.style.transformStyle;
expected = "preserve-3d";
assert.strictEqual( actual, expected, "canvas.style.transformStyle initialized correctly" );