Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMatt Stratton <matt.stratton@gmail.com>2020-12-10 01:43:26 +0300
committerGitHub <noreply@github.com>2020-12-10 01:43:26 +0300
commit95b4066c3ba8ca6aa9b133bf9c66cee6e7efe292 (patch)
tree5decc80ceacd3a918c62c6b6e18d197434a2182e /test
parent6616bf5cdf72f2cd8bb3577c53764410476813d1 (diff)
Test with matrix build (#321)
Diffstat (limited to 'test')
-rw-r--r--test/blue-grid.js17
-rw-r--r--test/blue-row-jumbo-false.js13
-rw-r--r--test/blue-row-jumbo-true.js13
3 files changed, 43 insertions, 0 deletions
diff --git a/test/blue-grid.js b/test/blue-grid.js
new file mode 100644
index 0000000..8c95265
--- /dev/null
+++ b/test/blue-grid.js
@@ -0,0 +1,17 @@
+module.exports = {
+ ci: {
+ collect: {
+ url: [
+ 'http://localhost:1313/',
+ 'http://localhost:1313/aug/',
+ 'http://localhost:1313/guest/',
+ 'http://localhost:1313/about/'
+ ],
+ startServerCommand: 'cd exampleSite && HUGO_ENV=production && hugo server --config ../test/blue-grid-config.toml --baseUrl="http://localhost:1313"',
+ startServerReadyPattern: 'Web Server is available'
+ },
+ upload: {
+ target: 'temporary-public-storage',
+ },
+ },
+}; \ No newline at end of file
diff --git a/test/blue-row-jumbo-false.js b/test/blue-row-jumbo-false.js
new file mode 100644
index 0000000..9e400d7
--- /dev/null
+++ b/test/blue-row-jumbo-false.js
@@ -0,0 +1,13 @@
+module.exports = {
+ ci: {
+ collect: {
+ url: [
+ 'http://localhost:1313/'
+ ],
+ startServerCommand: 'cd exampleSite && HUGO_ENV=production && hugo server --config ../test/blue-row-jumbo-false-config.toml --baseUrl="http://localhost:1313"',
+ },
+ upload: {
+ target: 'temporary-public-storage',
+ },
+ },
+}; \ No newline at end of file
diff --git a/test/blue-row-jumbo-true.js b/test/blue-row-jumbo-true.js
new file mode 100644
index 0000000..e564a2d
--- /dev/null
+++ b/test/blue-row-jumbo-true.js
@@ -0,0 +1,13 @@
+module.exports = {
+ ci: {
+ collect: {
+ url: [
+ 'http://localhost:1313/'
+ ],
+ startServerCommand: 'cd exampleSite && HUGO_ENV=production && hugo server --config ../test/blue-row-jumbo-true-config.toml --baseUrl="http://localhost:1313"',
+ },
+ upload: {
+ target: 'temporary-public-storage',
+ },
+ },
+}; \ No newline at end of file