refactor: correct interop test paths

This commit is contained in:
Kelvin Jin 2017-10-23 17:36:42 -07:00
parent 5c657cf3bd
commit afca1967cc
3 changed files with 6 additions and 6 deletions

View File

@ -68,11 +68,11 @@ gulp.task('internal.test.test', 'Run API-level tests', () => {
const interopTestGlob = `${testDir}/interop/interop_sanity_test.js`;
const runTestsArgPairs = [
[apiTestGlob, 'native_native'],
[apiTestGlob, 'js_js'],
// [apiTestGlob, 'js_js'],
[interopTestGlob, 'native_native'],
[interopTestGlob, 'native_js'],
[interopTestGlob, 'js_native'],
[interopTestGlob, 'js_js']
// [interopTestGlob, 'native_js'],
// [interopTestGlob, 'js_native'],
// [interopTestGlob, 'js_js']
];
return runTestsArgPairs.reduce((previousPromise, argPair) => {
return previousPromise.then(runTestsWithFixture.bind(null, argPair[0], argPair[1]));

View File

@ -22,7 +22,7 @@ var fs = require('fs');
var path = require('path');
var grpc = require('../any_grpc').client;
var testProto = grpc.load({
root: __dirname + '/../../../packages/grpc-native-core/deps/grpc',
root: __dirname + '/../../packages/grpc-native-core/deps/grpc',
file: 'src/proto/grpc/testing/test.proto'}).grpc.testing;
var GoogleAuth = require('google-auth-library');

View File

@ -24,7 +24,7 @@ var _ = require('lodash');
var AsyncDelayQueue = require('./async_delay_queue');
var grpc = require('../any_grpc').server;
var testProto = grpc.load({
root: __dirname + '/../../../packages/grpc-native-core/deps/grpc',
root: __dirname + '/../../packages/grpc-native-core/deps/grpc',
file: 'src/proto/grpc/testing/test.proto'}).grpc.testing;
var ECHO_INITIAL_KEY = 'x-grpc-test-echo-initial';