diff --git a/index.html b/builder_specs.html similarity index 79% rename from index.html rename to builder_specs.html index 06920d7e6b..2a30addbb2 100644 --- a/index.html +++ b/builder_specs.html @@ -34,10 +34,7 @@ -

TESTS 🍏

-
- Old editor specs ( available if running

grunt dev

) -
+

BUILDER TESTS

@@ -45,7 +42,7 @@ Builder specs ( available if running

grunt affected_specs

) -
You can run both test suites through command line using

grunt test

+
You can run both Builder and Editors test suites through command line using

grunt test

diff --git a/editor_specs.html b/editor_specs.html new file mode 100644 index 0000000000..3170266d03 --- /dev/null +++ b/editor_specs.html @@ -0,0 +1,45 @@ + + + + + CARTO | Frontend dev stuff + + + + +

EDITOR TESTS 👴🏻

+
+ Old editor specs ( available if running

grunt dev

) +
+ +
You can run both Builder and Editors test suites through command line using

grunt test

+ + + diff --git a/lib/build/tasks/connect.js b/lib/build/tasks/connect.js index 359b1802c4..aaf602f605 100644 --- a/lib/build/tasks/connect.js +++ b/lib/build/tasks/connect.js @@ -5,7 +5,7 @@ module.exports = { options: { port: 8089, livereload: false, - open: true, + open: 'http://localhost:8089/editor_specs.html', hostname: '0.0.0.0', // to be able to access the server not only from localhost base: { path: '.' @@ -16,7 +16,7 @@ module.exports = { options: { port: 8088, livereload: false, - open: true, + open: 'http://localhost:8088/builder_specs.html', hostname: '0.0.0.0', // to be able to access the server not only from localhost base: { path: '.' diff --git a/lib/build/tasks/webpack/webpack.js b/lib/build/tasks/webpack/webpack.js index 2db7ee03b0..89f94de00a 100644 --- a/lib/build/tasks/webpack/webpack.js +++ b/lib/build/tasks/webpack/webpack.js @@ -107,9 +107,9 @@ var compile = function (config) { if (stats.hasErrors()) { console.error(colors.red(info.errors)); console.error(''); - console.error('🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥'); + console.error('🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥'); console.error(colors.red('THERE WAS AN ERROR WHILE BUNDLING!!!')); - console.error('🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥'); + console.error('🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥 🔥'); } if (!stats.hasErrors() && !stats.hasWarnings()) { logAssets(info.assets);