Skip to content

Commit b4bf329

Browse files
committed
fix: test case for early access
1 parent b4efbe6 commit b4bf329

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/entry/find.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ test('Initalise the Contentstack Stack Instance', function(TC) {
2020
}, 1000);
2121
});
2222

23-
test.only('early_access_headers in stack initialization', function (t) {
24-
const stack = Contentstack.Stack({ ...init.stack, early_access_headers: ['newCDA', 'taxonomy'] });
23+
test.only('early_access in stack initialization', function (t) {
24+
const stack = Contentstack.Stack({ ...init.stack, early_access: ['newCDA', 'taxonomy'] });
2525
t.equal(stack.headers['x-header-ea'], 'newCDA,taxonomy', 'Early access headers should be added');
2626
t.end();
2727
});

0 commit comments

Comments
 (0)