mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-11 02:12:21 -05:00
Removed .only
from Portal tests
- I'm not sure what this was doing here, nor why it hasn't caused problems for us
This commit is contained in:
parent
60b3731199
commit
9f5d4b4efe
1 changed files with 6 additions and 6 deletions
|
@ -122,7 +122,7 @@ describe('Signin', () => {
|
|||
afterEach(() => {
|
||||
window.location = realLocation;
|
||||
});
|
||||
test.only('with default settings', async () => {
|
||||
test('with default settings', async () => {
|
||||
const {
|
||||
ghostApi, popupFrame, triggerButtonFrame, emailInput, nameInput, submitButton,popupIframeDocument
|
||||
} = await setup({
|
||||
|
@ -149,7 +149,7 @@ describe('Signin', () => {
|
|||
expect(magicLink).toBeInTheDocument();
|
||||
});
|
||||
|
||||
test.only('without name field', async () => {
|
||||
test('without name field', async () => {
|
||||
const {ghostApi, popupFrame, triggerButtonFrame, emailInput, nameInput, submitButton,
|
||||
popupIframeDocument} = await setup({
|
||||
site: FixtureSite.singleTier.withoutName
|
||||
|
@ -175,7 +175,7 @@ describe('Signin', () => {
|
|||
expect(magicLink).toBeInTheDocument();
|
||||
});
|
||||
|
||||
test.only('with only free plan', async () => {
|
||||
test('with only free plan', async () => {
|
||||
let {ghostApi, popupFrame, triggerButtonFrame, emailInput, nameInput, submitButton,
|
||||
popupIframeDocument} = await setup({
|
||||
site: FixtureSite.singleTier.onlyFreePlan
|
||||
|
@ -215,7 +215,7 @@ describe('Signin', () => {
|
|||
afterEach(() => {
|
||||
window.location = realLocation;
|
||||
});
|
||||
test.only('with default settings', async () => {
|
||||
test('with default settings', async () => {
|
||||
const {ghostApi, popupFrame, triggerButtonFrame, emailInput, nameInput, submitButton,
|
||||
popupIframeDocument} = await multiTierSetup({
|
||||
site: FixtureSite.multipleTiers.basic
|
||||
|
@ -241,7 +241,7 @@ describe('Signin', () => {
|
|||
expect(magicLink).toBeInTheDocument();
|
||||
});
|
||||
|
||||
test.only('without name field', async () => {
|
||||
test('without name field', async () => {
|
||||
const {ghostApi, popupFrame, triggerButtonFrame, emailInput, nameInput, submitButton,
|
||||
popupIframeDocument} = await multiTierSetup({
|
||||
site: FixtureSite.multipleTiers.withoutName
|
||||
|
@ -267,7 +267,7 @@ describe('Signin', () => {
|
|||
expect(magicLink).toBeInTheDocument();
|
||||
});
|
||||
|
||||
test.only('with only free plan available', async () => {
|
||||
test('with only free plan available', async () => {
|
||||
let {ghostApi, popupFrame, triggerButtonFrame, emailInput, nameInput, submitButton,
|
||||
popupIframeDocument} = await multiTierSetup({
|
||||
site: FixtureSite.multipleTiers.onlyFreePlan
|
||||
|
|
Loading…
Add table
Reference in a new issue