@@ -150,6 +150,7 @@ describe(`DiamondBase 1155 Test`, function () {
150150 } ) ;
151151
152152 describe ( "PaymentSplitterUpdate" , function ( ) {
153+ // FIXME: This test is failing
153154 it ( "Should allow the owner to update the payment splitter" , async function ( ) {
154155 const { paymentSplitterFacet, owner, livelyDev, signer1, signer2, diamondAddress } = await loadFixture (
155156 deployTokenFixture
@@ -203,6 +204,7 @@ describe(`DiamondBase 1155 Test`, function () {
203204 expect ( await paymentSplitterFacet [ "releasable(address)" ] ( livelyDev . address ) ) . to . equal ( ethers . parseEther ( "1.5" ) ) ;
204205 } ) ;
205206
207+ // FIXME: This test is failing
206208 it ( "Should revert if the caller isn't a payee" , async function ( ) {
207209 const { paymentSplitterFacet, signer1, signer2 } = await loadFixture ( deployTokenFixture ) ;
208210
@@ -228,6 +230,7 @@ describe(`DiamondBase 1155 Test`, function () {
228230 expect ( await diamondFacet . exists ( 0 ) ) . to . equal ( true ) ;
229231 } ) ;
230232
233+ // FIXME: This test is failing
231234 it ( "Diamond should have the correct owner" , async function ( ) {
232235 const { owner, diamondFacet } = await loadFixture ( deployTokenFixture ) ;
233236 expect ( await ( diamondFacet as unknown as OwnableFacet ) . owner ( ) ) . to . equal ( owner . address ) ;
@@ -614,6 +617,7 @@ describe(`DiamondBase 1155 Test`, function () {
614617 } ) ;
615618
616619 describe ( "Allow list" , function ( ) {
620+ // FIXME: This test is failing
617621 it ( "Should allow the allow list to be enabled and addresses added" , async function ( ) {
618622 const { signer1, allowListFacet } = await loadFixture ( deployTokenFixture ) ;
619623
0 commit comments