Skip to content

Commit

Permalink
Expose accessibilityTreeSnapshotSerializer (#403)
Browse files Browse the repository at this point in the history
  • Loading branch information
calebeby committed Feb 9, 2022
1 parent 9badbcb commit 6ceb029
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 11 deletions.
52 changes: 52 additions & 0 deletions .changeset/spicy-peas-help.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
---
'pleasantest': minor
---

Expose `accessibilityTreeSnapshotSerializer`. This is the snapshot serializer that Pleasantest configures Jest to use to format accessibility tree snapshots. It was enabled by default in previous versions, and it still is, just now it is also exposed as an export so you can pass the snapshot serializer to other tools, like [`snapshot-diff`](https://github.com/jest-community/snapshot-diff).

Here's an example of using this:

This part you'd put in your test setup file (configured in Jest's `setupFilesAfterEnv`):

```js
import snapshotDiff from 'snapshot-diff';

expect.addSnapshotSerializer(snapshotDiff.getSnapshotDiffSerializer());
snapshotDiff.setSerializers([
{
test: accessibilityTreeSnapshotSerializer.test,
// @ts-ignore
print: (value) => accessibilityTreeSnapshotSerializer.serialize(value),
diffOptions: () => ({ expand: true }),
},
]);
```

Then in your tests:

```js
const beforeSnap = await getAccessibilityTree(element);

// ... interact with the DOM

const afterSnap = await getAccessibilityTree(element);

expect(snapshotDiff(beforeSnap, afterSnap)).toMatchInlineSnapshot(`
Snapshot Diff:
- First value
+ Second value
region "Summary"
heading "Summary"
text "Summary"
list
listitem
text "Items:"
- text "2"
+ text "5"
link "Checkout"
text "Checkout"
`);
```

The diff provided by snapshotDiff automatically highlights the differences between the snapshots, to make it clear to the test reader what changed in the page accessibility structure as the interactions happened.
22 changes: 12 additions & 10 deletions src/accessibility/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,17 @@ const getAccessibilityTreeWrapper: typeof getAccessibilityTree = async (

export { getAccessibilityTreeWrapper as getAccessibilityTree };

export const accessibilityTreeSnapshotSerializer: import('pretty-format').NewPlugin =
{
serialize: (val, config, indentation, depth, refs, printer) => {
const v = val[accessibilityTreeSymbol];
return typeof v === 'string'
? v
: printer(v, config, indentation, depth, refs);
},
test: (val) =>
val && typeof val === 'object' && accessibilityTreeSymbol in val,
};
// This tells Jest how to print the accessibility tree (without adding extra quotes)
// https://jestjs.io/docs/expect#expectaddsnapshotserializerserializer
expect.addSnapshotSerializer({
serialize: (val, config, indentation, depth, refs, printer) => {
const v = val[accessibilityTreeSymbol];
return typeof v === 'string'
? v
: printer(v, config, indentation, depth, refs);
},
test: (val) =>
val && typeof val === 'object' && accessibilityTreeSymbol in val,
});
expect.addSnapshotSerializer(accessibilityTreeSnapshotSerializer);
5 changes: 4 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -463,4 +463,7 @@ afterAll(async () => {

export type { WaitForOptions };

export { getAccessibilityTree } from './accessibility';
export {
getAccessibilityTree,
accessibilityTreeSnapshotSerializer,
} from './accessibility';

0 comments on commit 6ceb029

Please sign in to comment.