Skip to content

Commit b443622

Browse files
test the transpiled files
1 parent c80f897 commit b443622

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

index.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
"name": "testingbot-tunnel-launcher",
44
"description": "A wrapper around TestingBot's Tunnel",
55
"version": "1.1.16",
6+
"main": "./build/tunnel-launcher.js",
67
"homepage": "https://github.com/testingbot/testingbot-tunnel-launcher",
78
"scripts": {
89
"lint": "eslint lib/",
9-
"test": "mocha --exit --reporter spec",
10-
"build": "babel lib -d build"
10+
"build": "babel lib -d build",
11+
"test": "npm run build && mocha --exit --reporter spec"
1112
},
1213
"devDependencies": {
1314
"@babel/cli": "^7.28.3",

test/downloader_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var downloader = require('./../lib/downloader');
1+
var downloader = require('./../build/downloader');
22
var assert = require('assert');
33
var os = require('os');
44
var path = require('path');

test/tunnel-launcher_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var tunnelLauncher = require('./../lib/tunnel-launcher');
1+
var tunnelLauncher = require('./../build/tunnel-launcher');
22
var assert = require('assert');
33

44
describe('Java Version Check', function() {

0 commit comments

Comments
 (0)