Skip to content

Commit

Permalink
Merge from main repo: Preliminary article on auth integration pattern…
Browse files Browse the repository at this point in the history
…s (#2422)
  • Loading branch information
github-actions[bot] committed Jul 11, 2023
1 parent 9288ebb commit 9335f91
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 12,723 deletions.
13 changes: 0 additions & 13 deletions .github/dependabot.yaml

This file was deleted.

23 changes: 23 additions & 0 deletions __mocks__/ssh2-sftp-client.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
export default class SftpClient {
connectionStatus: boolean;

constructor() {
this.connectionStatus = false;
}

connect(options: any) {
this.connectionStatus = true;
}

createReadStream() {
return undefined;
}

put(): Promise<string> {
return Promise.resolve('success');
}

list(remoteFilePath: string): Promise<any> {
return Promise.resolve([]);
}
}
Loading

0 comments on commit 9335f91

Please sign in to comment.