Browse Source

fixed test:dev

sanex3339 8 years ago
parent
commit
513d7f97d7
1 changed files with 4 additions and 4 deletions
  1. 4 4
      test/dev/dev.ts

+ 4 - 4
test/dev/dev.ts

@@ -12,16 +12,16 @@ import { NO_CUSTOM_NODES_PRESET } from '../../src/options/presets/NoCustomNodes'
                     console.log('abc');
                 };
                 var bar = function () {
-                    alert('def');
+                    console.log('def');
                 };
                 var baz = function () {
-                    alert('ghi');
+                    console.log('ghi');
                 };
                 var bark = function () {
-                    alert('jkl');
+                    console.log('jkl');
                 };
                 var hawk = function () {
-                    alert('mno');
+                    console.log('mno');
                 };
             
                 foo();