This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Menu: Meet | |
// Description: Start new meet and paste on Slack | |
// Author: Valentin Hervieu | |
// Twitter: @ValentinHervieu | |
import "@johnlindquist/kit" | |
browse('https://meet.new') | |
let count = 1 | |
let tab = '' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { mockGQLResolver } from './mockGQLResolver'; | |
describe('mockGQLResolver demo', () => { | |
it('mocking a query with a plain object', async () => { | |
mockGQLResolver({ | |
queries: { | |
ExampleQueryName: { | |
users: [ | |
{ id: '1', name: 'John' }, | |
{ id: '2', name: 'Jane' }, |
OlderNewer