blob: c2a6dfc6db26392c460fb0b1caaa8fa348d7e0ae [file] [log] [blame]
/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {PbKeyset} from './proto';
describe('proto test', function() {
it('field', function() {
const keyset = new PbKeyset().setPrimaryKeyId(1);
expect(keyset.getPrimaryKeyId()).toBe(1);
});
});