mirror of
https://github.com/grpc/grpc-node.git
synced 2025-12-08 18:23:54 +00:00
9 lines
231 B
TypeScript
9 lines
231 B
TypeScript
import { ChannelCredentials } from '../src/channel-credentials';
|
|
import * as assert from 'assert';
|
|
|
|
describe('Channel Credentials', function() {
|
|
it('should be an object', function() {
|
|
assert.ok(ChannelCredentials);
|
|
});
|
|
});
|