summaryrefslogtreecommitdiff
path: root/packages/create-astro/test/helpers.js
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@matthewphillips.info> 2021-07-06 15:14:22 -0400
committerGravatar GitHub <noreply@github.com> 2021-07-06 15:14:22 -0400
commitd8ceff5facbbe7d7b358c718e73c2cfaa31cae5a (patch)
tree6d28a563a60853c7b75ad06673597240b2e0aaee /packages/create-astro/test/helpers.js
parent2ab625bee86f752ca963a572ee28b93cd94e8643 (diff)
downloadastro-d8ceff5facbbe7d7b358c718e73c2cfaa31cae5a.tar.gz
astro-d8ceff5facbbe7d7b358c718e73c2cfaa31cae5a.tar.zst
astro-d8ceff5facbbe7d7b358c718e73c2cfaa31cae5a.zip
Implements templates from external repos (#603)
* Implements templates from external repos * Adds a changeset
Diffstat (limited to '')
-rw-r--r--packages/create-astro/test/helpers.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/create-astro/test/helpers.js b/packages/create-astro/test/helpers.js
new file mode 100644
index 000000000..295f9c650
--- /dev/null
+++ b/packages/create-astro/test/helpers.js
@@ -0,0 +1,13 @@
+import execa from 'execa';
+import path from 'path';
+import { fileURLToPath, pathToFileURL } from 'url';
+
+const GITHUB_SHA = process.env.GITHUB_SHA || execa.sync('git', ['rev-parse', 'HEAD']).stdout; // process.env.GITHUB_SHA will be set in CI; if testing locally execa() will gather this
+const FIXTURES_DIR = path.join(fileURLToPath(path.dirname(import.meta.url)), 'fixtures');
+const FIXTURES_URL = pathToFileURL(FIXTURES_DIR + '/');
+
+export {
+ GITHUB_SHA,
+ FIXTURES_DIR,
+ FIXTURES_URL
+}; \ No newline at end of file