From ae586f7b69c6e282166c7c64542b33ae805b746e Mon Sep 17 00:00:00 2001 From: sofisl <55454395+sofisl@users.noreply.github.com> Date: Fri, 11 Nov 2022 13:58:33 -0800 Subject: [PATCH] Delete system.ts --- .../system-test/system.ts | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 packages/google-cloud-scheduler/system-test/system.ts diff --git a/packages/google-cloud-scheduler/system-test/system.ts b/packages/google-cloud-scheduler/system-test/system.ts deleted file mode 100644 index 4c180050308..00000000000 --- a/packages/google-cloud-scheduler/system-test/system.ts +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright 2018 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// https://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -import * as assert from 'assert'; -import {describe, it} from 'mocha'; -import {CloudSchedulerClient} from '../src'; - -describe('typescript system test', () => { - it('should list available jobs', async () => { - const location = 'us-central1'; - const client = new CloudSchedulerClient(); - const projectId = await client.getProjectId(); - const parent = client.locationPath(projectId, location); - const [result] = await client.listJobs({parent}); - assert.ok(result); - }); -});