Separated connect instances

pull/11750/head
Ivan Malagon 8 years ago
parent 2f2db5dc13
commit 3e95835308

@ -34,10 +34,7 @@
</style>
</head>
<body>
<h1>TESTS 🍏</h1>
<div>
<a href="/_SpecRunner.html">Old editor specs</a> ( available if running <p class="code">grunt dev</p> )
</div>
<h1>BUILDER TESTS</h1>
<!--<li>
<a href="/_SpecRunner-cartodb3.html">Tests - editor 3.0</a>
</li>-->
@ -45,7 +42,7 @@
<a href="/_SpecRunner-affected.html">Builder specs</a> ( available if running <p class="code">grunt affected_specs</p> )
</div>
<div>You can run both test suites through command line using <p class="code">grunt test</p></div>
<div>You can run both Builder and Editors test suites through command line using <p class="code">grunt test</p></div>
</body>
</html>

@ -0,0 +1,45 @@
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8" />
<title>CARTO | Frontend dev stuff</title>
<link href="http://fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet" type="text/css">
<style>
body {
font-family: 'Lato', Arial, Helvetica, sans-serif;
font-size: 1em;
}
h1 {
color: #fff;
background-color: #41B14F;
font-weight: 700;
font-size: 2em;
padding: 0.5em;
}
a {
font-size: 1.5em;
}
div {
font-size: 1em;
padding: 0.5em;
}
p.code {
color: #cc2255;
background-color: #f7f7f9;
border: #e1e1e8 solid 1px;
display: inline;
padding: 0.25em 0.5em;
}
</style>
</head>
<body>
<h1>EDITOR TESTS 👴🏻</h1>
<div>
<a href="/_SpecRunner.html">Old editor specs</a> ( available if running <p class="code">grunt dev</p> )
</div>
<div>You can run both Builder and Editors test suites through command line using <p class="code">grunt test</p></div>
</body>
</html>

@ -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: '.'

@ -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);

Loading…
Cancel
Save