diff --git a/core/src/components/toast/test/basic/e2e.ts b/core/src/components/toast/test/basic/e2e.ts
index 247c84efec..8044981dd0 100644
--- a/core/src/components/toast/test/basic/e2e.ts
+++ b/core/src/components/toast/test/basic/e2e.ts
@@ -46,6 +46,10 @@ test('toast: start end position', async () => {
await testToast(DIRECTORY, '#toast-start-and-end');
});
+test('toast: html', async () => {
+ await testToast(DIRECTORY, '#toast-html');
+});
+
/**
* RTL Tests
*/
@@ -93,3 +97,7 @@ test('toast:rtl: basic, custom class', async () => {
test('toast:rtl: start end position', async () => {
await testToast(DIRECTORY, '#toast-start-and-end', true);
});
+
+test('toast:rtl: html', async () => {
+ await testToast(DIRECTORY, '#toast-html', true);
+});
diff --git a/core/src/components/toast/test/basic/index.html b/core/src/components/toast/test/basic/index.html
index 522a4c5102..5ddbca03b4 100644
--- a/core/src/components/toast/test/basic/index.html
+++ b/core/src/components/toast/test/basic/index.html
@@ -71,6 +71,10 @@