Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): bump braces from 3.0.2 to 3.0.3 #120

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.


Unchanged files with check annotations Beta

import Serverless from '../types/serverless';
describe('Deploy', () => {
let providerMock: any;

Check warning on line 6 in src/deploy/deploy.test.ts

GitHub Actions / lint

Unexpected any. Specify a different type
let serverlessMock: any;

Check warning on line 7 in src/deploy/deploy.test.ts

GitHub Actions / lint

Unexpected any. Specify a different type
const mockOptions: Serverless.Options = {
region: 'ru-central1',
serverlessMock = {
getProvider: () => providerMock,
cli: {
log: console.log,

Check warning on line 52 in src/deploy/deploy.test.ts

GitHub Actions / lint

Unexpected console statement
},
};
jest.spyOn(fs, 'statSync').mockReturnValue({ size: 10_000 } as fs.Stats);
await this.deploy();
log.info('Service deployed successfully');
} catch (error: any) {

Check warning on line 53 in src/deploy/deploy.ts

GitHub Actions / lint

Unexpected any. Specify a different type
log.error(error);
}
},
import { YCFunction } from './function';
describe('OpenAPI Spec', () => {
let providerMock: any;

Check warning on line 5 in src/entities/openapi-spec.test.ts

GitHub Actions / lint

Unexpected any. Specify a different type
let serverlessMock: any;

Check warning on line 6 in src/entities/openapi-spec.test.ts

GitHub Actions / lint

Unexpected any. Specify a different type
let deployMock: any;

Check warning on line 7 in src/entities/openapi-spec.test.ts

GitHub Actions / lint

Unexpected any. Specify a different type
beforeEach(() => {
providerMock = {
serverlessMock = {
getProvider: () => providerMock,
cli: {
log: console.log,

Check warning on line 48 in src/entities/openapi-spec.test.ts

GitHub Actions / lint

Unexpected console statement
},
resources: {
acc: {
{
http: {
path: '/any',
method: 'any' as any,

Check warning on line 119 in src/entities/openapi-spec.test.ts

GitHub Actions / lint

Unexpected any. Specify a different type
},
},
{
{
http: {
path: '/foo',
method: 'get' as any,

Check warning on line 198 in src/entities/openapi-spec.test.ts

GitHub Actions / lint

Unexpected any. Specify a different type
},
},
{