{"id":13521933,"url":"https://github.com/aleios-cloud/sls-test-tools","last_synced_at":"2025-10-09T09:01:50.702Z","repository":{"id":40249679,"uuid":"291027646","full_name":"aleios-cloud/sls-test-tools","owner":"aleios-cloud","description":"Custom Jest Assertions for Serverless integration testing.","archived":false,"fork":false,"pushed_at":"2023-02-12T00:38:15.000Z","size":2909,"stargazers_count":195,"open_issues_count":19,"forks_count":20,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-03-09T00:02:54.959Z","etag":null,"topics":["aws","eventbridge","jest","serverless","sls-dev-tools","sqs","testing"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aleios-cloud.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2020-08-28T11:18:02.000Z","updated_at":"2025-01-20T06:40:24.000Z","dependencies_parsed_at":"2023-02-18T10:31:23.198Z","dependency_job_id":null,"html_url":"https://github.com/aleios-cloud/sls-test-tools","commit_stats":{"total_commits":139,"total_committers":15,"mean_commits":9.266666666666667,"dds":0.5827338129496402,"last_synced_commit":"bcfd81153d4957ff1f16edc7b0a61e4cae68b81d"},"previous_names":["theodo-uk/sls-test-tools"],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aleios-cloud%2Fsls-test-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aleios-cloud%2Fsls-test-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aleios-cloud%2Fsls-test-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aleios-cloud%2Fsls-test-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aleios-cloud","download_url":"https://codeload.github.com/aleios-cloud/sls-test-tools/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246552037,"owners_count":20795755,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","eventbridge","jest","serverless","sls-dev-tools","sqs","testing"],"created_at":"2024-08-01T06:00:39.815Z","updated_at":"2025-10-09T09:01:50.635Z","avatar_url":"https://github.com/aleios-cloud.png","language":"TypeScript","funding_links":[],"categories":["Tools"],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003esls-test-tools\u003c/h1\u003e\n  \u003cimg src=\"./img/logo.png\" /\u003e\n\nCustom Jest Assertions for Serverless Projects\n\n\u003c/div\u003e\n\n\u003chr /\u003e\n\n`sls-test-tools` provides a range of utilities, setup, teardown and assertions to make it easier to write effective and high quality integration tests for Serverless Architectures on AWS.\n\n**🚧 This is in an alpha state while we trial a few initial assertions and get feedback on the approach and structure. 🚧**\n\n**⚠️ AWS resources will be created (SQS Queue, EventBridge Rule...) if the EventBridge module is used. Although there is clear setup and teardown we do not advise running this on production environments currently. ⚠️**\n\n## Installation\n\nWith npm:\n\n```sh\nnpm install --save-dev sls-test-tools\n```\n\nWith yarn:\n\n```sh\nyarn add -D sls-test-tools\n```\n\n## Maintenance\n\nsls-test-tools is currently being actively maintained, yet is in alpha. Your feedback is very welcome.\n\n## Assertions:\n\n### EventBridge\n\n```\n    expect(eventBridgeEvents).toHaveEvent();\n\n    expect(eventBridgeEvents).toHaveEventWithSource(\"order.created\");\n```\n\n### S3\n\nNote: these async assertions require \"await\"\n\n```\n    await expect(\"BUCKET NAME\").toHaveS3ObjectWithNameEqualTo(\"FILE NAME\");\n```\n\n```\n    await expect(\"BUCKET NAME\").toExistAsS3Bucket();\n```\n\n```\n    await expect({\n      bucketName: \"BUCKET_NAME\",\n      objectName: \"FILE NAME\",\n    }).toHaveContentTypeEqualTo(\"CONTENT_TYPE\");;\n```\n\nwhere CONTENT_TYPE are [standards MIME types](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types)\n\n```\n    await expect({\n      bucketName: \"BUCKET_NAME\",\n      objectName: \"FILE NAME\",\n    }).toHaveContentEqualTo(\"CONTENT\");\n```\n\n### Step Functions\n\nNote: these assertions also require \"await\"\n\n```\n    await expect(\"STATE_MACHINE_NAME\").toHaveCompletedExecutionWithStatus(\"STATUS\");\n    await expect(\"STATE_MACHINE_NAME\").toMatchStateMachineOutput({EXPECTED_OUTPUT}));\n```\n\n### DynamoDB\n\nNote: these assertions also require \"await\"\n\n```\n    await expect(\"TABLENAME\").toContainItemWithValues({[field]: value});\n    await expect({PK: pk,\n                  SK: sk,\n                }).toExistInDynamoTable('TABLENAME');\n```\n\n### Cognito\n\nNote: this assertion also requires \"await\"\n\n```\n  await expect('USER_POOL_ID').toContainUser('USERNAME');\n```\n\n## Helpers\n\n### General\n\nAWSClient - An AWS client with credentials set up\n\n```\ngetStackResources(stackName) - get information about a stack\ngetOptions() - get options for making requests to AWS\n```\n\n### EventBridge\n\nAn interface to the deployed EventBridge, allowing events to be injected and intercepted via an SQS queue and EventBridge rule.\n\n#### Static\n\n```\n    EventBridge.build(busName) - create a EventBridge instance to allow events to be injected and intercepted\n```\n\n#### Instance\n\n```\n    eventBridge.publishEvent(source, detailType, detail, clear?) - publish an event to the bus\n    eventBridge.getEvents(clear?) - get the events that have been sent to the bus\n    eventBridge.clear() - clear old messages\n    eventBridge.destroy() - remove infastructure used to track events\n```\n\n### Step Functions\n\nAn interface to a deployed Step Function, with a function to execute a Step Function until its completion.\n\n#### Static\n\n```\n  StepFunctions.build() // create a Step Functions Client for executing existing state machines\n```\n\n#### Instance\n\n```\n  stepFunctions.runExecution(stateMachineName, input) // executes state machine until completion\n```\n\n### Cognito\n\n```\n  await createAuthenticatedUser({\n    clientId: \"CLIENT_ID\",\n    userPoolId: \"USER_POOL_ID\",\n    standardAttributes: [\"email\", \"middle_name\"], // works for all cognito standard user attributes\n    customAttributes: [{hello: \"string\"}], // only works for customAttributes which have been explicitly defined in the user pool schema\n  });\n\n  await createUnauthenticatedUser({\n    clientId: \"CLIENT_ID\",\n    userPoolId: \"USER_POOL_ID\",\n    confirmed: true,\n    standardAttributes: [\"email\", \"middle_name\", \"address\", \"birthdate\"],  // works for all cognito standard user attributes\n    customAttributes: [{hello: \"string\"}], // only works for customAttributes which have been explicitly defined in the user pool schema\n  });\n```\n\n## Running with `jest`\n\n### Arguments\n\n- When running tests with `jest` using `sls-test-tools` matchers there are certain parameters needed for `sls-test-tools` to make assertions.\n- These are passed either as command line arguments, using quotation to match `jests` convention on test arguments, or by using environment variables. CLI arguments override environment variables.\n\n**Required**\n\n- `'--stack=my-service-dev'` or `process.env.CFN_STACK_NAME` - the CloudFormation stack name of the stack under test.\n\n**Optional**\n\n- `'--profile=[PROFILE NAME]'` or `process.env.AWS_PROFILE` (will default to `default`)\n- `'--region=[AWS Region]'` or `process.env.AWS_REGION` (will default to `eu-west-2`)\n- `'--keep=true'` or `process.env.SLS_TEST_TOOLS_KEEP` (will default to `false`) - keeps testing resources up to avoid creation throttles (e.g. SQS Queue created for EventBridge assertions)\n- `'--event-rule-name=[Event Bus Rule Name]'` - Custom Event bridge Rule name (will deafult to `test-${eventBridgeName}-rule`)\n- `'--queue-name=[SQS Queue Name]'` - Custom SQS Queue name (will deafult to `${eventBridgeName}-testing-queue`)\n\n- To avoid issues we recommend `--runInBand`\n\n```\nimport { AWSClient, EventBridge } from \"sls-test-tools\";\n\nconst lambda = new AWSClient.Lambda()\nlet eventBridge;\nconst s3 = new AWSClient.S3()\n\ndescribe(\"Integration Testing Event Bridge\", () =\u003e {\n  beforeAll(async () =\u003e {\n    eventBridge = await EventBridge.build(\"event-bridge\")\n  });\n\n  afterAll(async () =\u003e {\n    await eventBridge.destroy()\n  });\n\n  it(\"correctly publishes an event to the event bus when the lambda is invoked\", async () =\u003e {\n    const event = {\n      body: JSON.stringify({\n        filename: filename,\n      }),\n    };\n\n    // Invoke Lambda Function\n    const params = {\n      FunctionName: \"event-bridge-example-dev-service1\",\n      Payload: JSON.stringify(event),\n    };\n    await lambda.invoke(params).promise();\n\n    const eventBridgeEvents = await eventBridge.getEvents()\n    expect(eventBridgeEvents).toHaveEvent();\n    expect(eventBridgeEvents).toHaveEventWithSource(\"order.created\");\n  });\n\n  it(\"correctly generates a PDF when an order is created\", async () =\u003e {\n    const bucketName = example-bucket\n    await eventBridge\n      .publishEvent(\"order.created\", \"example\", JSON.stringify({ filename: filename }));\n\n    await sleep(5000); // wait 5 seconds to allow event to pass\n\n    const params = {\n      Bucket: bucketName,\n      Key: filename,\n    };\n\n    // Assert that file was added to the S3 bucket\n    await expect(\"example-dev-thumbnails-bucket\").toHaveS3ObjectWithNameEqualTo(\n      filename\n    );\n  });\n```\n\n## Contributors ✨\n\nThanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://medium.com/serverless-transformation\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/11080984?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eBen Ellerby\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/BenEllerby/sls-test-tools/commits?author=BenEllerby\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/BenEllerby/sls-test-tools/commits?author=BenEllerby\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"#ideas-BenEllerby\" title=\"Ideas, Planning, \u0026 Feedback\"\u003e🤔\u003c/a\u003e \u003ca href=\"#design-BenEllerby\" title=\"Design\"\u003e🎨\u003c/a\u003e \u003ca href=\"https://github.com/BenEllerby/sls-test-tools/pulls?q=is%3Apr+reviewed-by%3ABenEllerby\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/hamilton-s\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/hamilton-s?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eSarah Hamilton\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/BenEllerby/sls-test-tools/commits?author=hamilton-s\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/BenEllerby/sls-test-tools/commits?author=hamilton-s\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/agwhi\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/agwhi?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAlexander White\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/BenEllerby/sls-test-tools/commits?author=aghwi\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/joelhamiltondev\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/joelhamiltondev?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJoel Hamilton\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/BenEllerby/sls-test-tools/commits?author=joelhamiltondev\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n\u003c!-- markdownlint-restore --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\nThis project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!\n\n\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003esls-test-tools\u003c/h1\u003e\n  \u003cimg src=\"./img/logo.png\" /\u003e\n\nCustom Jest Assertions for Serverless Projects\n\n\u003c/div\u003e\n\n\u003chr /\u003e\n\n`sls-test-tools` provides a range of utilities, setup, teardown and assertions to make it easier to write effective and high quality integration tests for Serverless Architectures on AWS.\n\n**🚧 This is in an alpha state while we trial a few initial assertions and get feedback on the approach and structure. 🚧**\n\n**⚠️ AWS resources will be created (SQS Queue, EventBridge Rule...) if the EventBridge module is used. Although there is clear setup and teardown we do not advise running this on production environments currently. ⚠️**\n\n## Installation\n\nWith npm:\n\n```sh\nnpm install --save-dev sls-test-tools\n```\n\nWith yarn:\n\n```sh\nyarn add -D sls-test-tools\n```\n\n## Maintenance\n\nsls-test-tools is currently being actively maintained, yet is in alpha. Your feedback is very welcome.\n\n## Assertions:\n\n### EventBridge\n\n```\n    expect(eventBridgeEvents).toHaveEvent();\n\n    expect(eventBridgeEvents).toHaveEventWithSource(\"order.created\");\n```\n\n### S3\n\nNote: these async assertions require \"await\"\n\n```\n    await expect(\"BUCKET NAME\").toHaveS3ObjectWithNameEqualTo(\"FILE NAME\");\n```\n\n```\n    await expect(\"BUCKET NAME\").toExistAsS3Bucket();\n```\n\n```\n    await expect({\n      bucketName: \"BUCKET_NAME\",\n      objectName: \"FILE NAME\",\n    }).toHaveContentTypeEqualTo(\"CONTENT_TYPE\");;\n```\n\nwhere CONTENT_TYPE are [standards MIME types](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types)\n\n```\n    await expect({\n      bucketName: \"BUCKET_NAME\",\n      objectName: \"FILE NAME\",\n    }).toHaveContentEqualTo(\"CONTENT\");\n```\n\n### Step Functions\n\nNote: these assertions also require \"await\"\n\n```\n    await expect(\"STATE_MACHINE_NAME\").toHaveCompletedExecutionWithStatus(\"STATUS\");\n    await expect(\"STATE_MACHINE_NAME\").toMatchStateMachineOutput({EXPECTED_OUTPUT}));\n```\n\n### DynamoDB\n\nNote: these assertions also require \"await\"\n\n```\n    await expect(\"TABLENAME\").toContainItemWithValues({[field]: value});\n    await expect({PK: pk,\n                  SK: sk,\n                }).toExistInDynamoTable('TABLENAME');\n```\n\n### Cognito\n\nNote: this assertion also requires \"await\"\n\n```\n  await expect('USER_POOL_ID').toContainUser('USERNAME');\n```\n\n## Helpers\n\n### General\n\nAWSClient - An AWS client with credentials set up\n\n```\ngetStackResources(stackName) - get information about a stack\ngetOptions() - get options for making requests to AWS\n```\n\n### EventBridge\n\nAn interface to the deployed EventBridge, allowing events to be injected and intercepted via an SQS queue and EventBridge rule.\n\n#### Static\n\n```\n    EventBridge.build(busName) - create a EventBridge instance to allow events to be injected and intercepted\n```\n\n#### Instance\n\n```\n    eventBridge.publishEvent(source, detailType, detail) - publish an event to the bus\n    eventBridge.getEvents() - get the events that have been sent to the bus\n    eventBridge.clear() - clear old messages\n    eventBridge.destroy() - remove infastructure used to track events\n```\n\n### Step Functions\n\nAn interface to a deployed Step Function, with a function to execute a Step Function until its completion.\n\n#### Static\n\n```\n  StepFunctions.build() // create a Step Functions Client for executing existing state machines\n```\n\n#### Instance\n\n```\n  stepFunctions.runExecution(stateMachineName, input) // executes state machine until completion\n```\n\n### Cognito\n\n```\n  await createAuthenticatedUser({\n    clientId: \"CLIENT_ID\",\n    userPoolId: \"USER_POOL_ID\",\n    standardAttributes: [\"email\", \"middle_name\"], // works for all cognito standard user attributes\n    customAttributes: [\"hello\"], // only works for customAttributes which have been explicitly defined in the user pool schema\n  });\n\n  await createUnauthenticatedUser({\n    clientId: \"CLIENT_ID\",\n    userPoolId: \"USER_POOL_ID\",\n    confirmed: true,\n    standardAttributes: [\"email\", \"middle_name\", \"address\", \"birthdate\"],  // works for all cognito standard user attributes\n  });\n\n\n```\n\n## Running with `jest`\n\n### Arguments\n\n- When running tests with `jest` using `sls-test-tools` matchers there are certain parameters needed for `sls-test-tools` to make assertions.\n- These are passed either as command line arguments, using quotation to match `jests` convention on test arguments, or by using environment variables. CLI arguments override environment variables.\n\n**Required**\n\n- `'--stack=my-service-dev'` or `process.env.CFN_STACK_NAME` - the CloudFormation stack name of the stack under test.\n\n**Optional**\n\n- `'--profile=[PROFILE NAME]'` or `process.env.AWS_PROFILE` (will default to `default`)\n- `'--region=[AWS Region]'` or `process.env.AWS_REGION` (will default to `eu-west-2`)\n- `'--keep=true'` - keeps testing resources up to avoid creation throttles (e.g. SQS Queue created for EventBridge assertions)\n\n- To avoid issues we recommend `--runInBand`\n\n```\nimport { AWSClient, EventBridge } from \"sls-test-tools\";\n\nconst lambda = new AWSClient.Lambda()\nlet eventBridge;\nconst s3 = new AWSClient.S3()\n\ndescribe(\"Integration Testing Event Bridge\", () =\u003e {\n  beforeAll(async () =\u003e {\n    eventBridge = await EventBridge.build(\"event-bridge\")\n  });\n\n  afterAll(async () =\u003e {\n    await eventBridge.destroy()\n  });\n\n  it(\"correctly publishes an event to the event bus when the lambda is invoked\", async () =\u003e {\n    const event = {\n      body: JSON.stringify({\n        filename: filename,\n      }),\n    };\n\n    // Invoke Lambda Function\n    const params = {\n      FunctionName: \"event-bridge-example-dev-service1\",\n      Payload: JSON.stringify(event),\n    };\n    await lambda.invoke(params).promise();\n\n    const eventBridgeEvents = await eventBridge.getEvents()\n    expect(eventBridgeEvents).toHaveEvent();\n    expect(eventBridgeEvents).toHaveEventWithSource(\"order.created\");\n  });\n\n  it(\"correctly generates a PDF when an order is created\", async () =\u003e {\n    const bucketName = example-bucket\n    await eventBridge\n      .publishEvent(\"order.created\", \"example\", JSON.stringify({ filename: filename }));\n\n    await sleep(5000); // wait 5 seconds to allow event to pass\n\n    const params = {\n      Bucket: bucketName,\n      Key: filename,\n    };\n\n    // Assert that file was added to the S3 bucket\n    await expect(\"example-dev-thumbnails-bucket\").toHaveS3ObjectWithNameEqualTo(\n      filename\n    );\n  });\n```\n\n## Contributors ✨\n\nThanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://medium.com/serverless-transformation\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/11080984?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eBen Ellerby\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/BenEllerby/sls-test-tools/commits?author=BenEllerby\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#content-BenEllerby\" title=\"Content\"\u003e🖋\u003c/a\u003e \u003ca href=\"https://github.com/BenEllerby/sls-test-tools/commits?author=BenEllerby\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"#ideas-BenEllerby\" title=\"Ideas, Planning, \u0026 Feedback\"\u003e🤔\u003c/a\u003e \u003ca href=\"#design-BenEllerby\" title=\"Design\"\u003e🎨\u003c/a\u003e \u003ca href=\"#talk-BenEllerby\" title=\"Talks\"\u003e📢\u003c/a\u003e \u003ca href=\"https://github.com/BenEllerby/sls-test-tools/pulls?q=is%3Apr+reviewed-by%3ABenEllerby\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://medium.com/serverless-transformation\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/hamilton-s\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eSarah Hamilton\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/BenEllerby/sls-test-tools/commits?author=hamilton-s\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#content-hamilton-s\" title=\"Content\"\u003e🖋\u003c/a\u003e \u003ca href=\"https://github.com/BenEllerby/sls-test-tools/commits?author=hamilton-s\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"#ideas-hamilton-s\" title=\"Ideas, Planning, \u0026 Feedback\"\u003e🤔\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/agwhi\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/agwhi\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAlex White\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/BenEllerby/sls-test-tools/commits?author=agwhi\" title=\"Code\"\u003e💻\u003c/a\u003e\u003ca href=\"https://github.com/BenEllerby/sls-test-tools/commits?author=agwhi\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n\u003c!-- markdownlint-enable --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\nThis project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faleios-cloud%2Fsls-test-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faleios-cloud%2Fsls-test-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faleios-cloud%2Fsls-test-tools/lists"}